03f38ef52a
#KT-2300 fixed
8 lines
316 B
Plaintext
8 lines
316 B
Plaintext
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.filterNot {<caret>it != ""}
|
|
}
|