fun test() { listOf(1, 2, 4).filter { it > 0 } } //INFO: public inline fun <T> Iterable<T>.filter(predicate: (T) → Boolean): List<T> defined in kotlin.collections

Returns a list containing only elements matching the given predicate.