strikt icon indicating copy to clipboard operation
strikt copied to clipboard

Add filterNotNull() for Iterables.

Open mlewe opened this issue 2 years ago • 0 comments

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.

mlewe avatar Sep 14 '22 11:09 mlewe