mapNotNull<R> method

Iterable<R> mapNotNull<R>(
  1. R? transform(
    1. MapEntry<K, V> entry
    )
)

Returns a Iterable containing only the non-null results of applying the given transform function to each entry in the original Map.

Implementation

Iterable<R> mapNotNull<R>(R? Function(MapEntry<K, V> entry) transform) =>
    entries.mapNotNull(transform);