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:
James Strachan
2012-03-27 10:58:01 +01:00
parent 7dd8bc9911
commit a1cde5a7aa
29 changed files with 1 additions and 1 deletions
@@ -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) {