03f38ef52a
#KT-2300 fixed
8 lines
313 B
Kotlin
8 lines
313 B
Kotlin
fun <T> jet.Array<T>.filter(predicate : (T) -> jet.Boolean) : java.util.List<T> = throw UnsupportedOperationException()
|
|
|
|
fun <T> jet.Array<T>.filterNot(predicate : (T) -> jet.Boolean) : java.util.List<T> = throw UnsupportedOperationException()
|
|
|
|
fun main(args: Array<String>) {
|
|
args.filter<caret> {it != ""}
|
|
}
|