filterFlattened

fun <T> List<List<T>>.filterFlattened(predicate: (T) -> Boolean): List<T>(source)

Returns a flattened list containing only the elements that match the given predicate.


Returns a flattened IntList containing only elements that match the given predicate.


Returns a flattened LongList containing only elements that match the given predicate.


Returns a flattened FloatList containing only elements that match the given predicate.


Returns a flattened DoubleList containing only elements that match the given predicate.