strikt
strikt copied to clipboard
Add filterNotNull() for Iterables.
fun <T> Builder<out Iterable<T?>>.filterNotNull(): Builder<List<T>> =
get { this.filterNotNull() }
Would make a nice addition to the already existing filter
, filterNot
and filterIsInstance
.