Documentation / dataflow / com.femastudios.dataflow.extensions / mapF
Go to reference
Go to reference
mapF
fun <T, R> Field<Iterable<T>>.mapF(transform: (T) -> Field<R>): Field<List<R>>
fun <K, V, R> Field<Map<K, V>>.mapF(transform: (Entry<K, V>) -> Field<R>): Field<List<R>>
Same as map, but accepts Field and returns a new Field.
See Also