mapNotNull<R> method

List<R> mapNotNull<R>(
  1. R? transform(
    1. T
    )
)

Returns a list containing only the non-null results of applying the given transform function to each element in the original collection.

Implementation

List<R> mapNotNull<R>(R? Function(T) transform) {
  return mapNotNullTo([], transform);
}