moved the source of the standard library so that the source files (other than generated stuff) are in the package hierarchy so its easier to navigate the source of the standard library
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ import java.util.*
|
||||
/**
|
||||
* Returns true if any elements in the collection match the given predicate
|
||||
*
|
||||
* @includeFunction ../test/CollectionTest.kt any
|
||||
* @includeFunction ../../test/CollectionTest.kt any
|
||||
*/
|
||||
inline fun <T> java.lang.Iterable<T>.any(predicate: (T)-> Boolean) : Boolean {
|
||||
for (elem in this) {
|
||||
Reference in New Issue
Block a user