Package | Description |
---|---|
net.hydromatic.lambda.functions |
Provides a similar API to the
java.util.functions package
that is part of OpenJDK 8. |
net.hydromatic.lambda.streams |
Provides a similar API to the
java.util.streams package
that is part of JDK 8. |
Modifier and Type | Method and Description |
---|---|
<W> BiMapper<T,U,W> |
BiMapper.compose(Mapper<? super V,? extends W> after) |
Modifier and Type | Method and Description |
---|---|
<W> MapStream<K,W> |
MapStream.map(BiMapper<K,V,W> mapper) |
<W> MapStream<K,W> |
MapStream.AbstractMapStream.map(BiMapper<K,V,W> kvwBiMapper) |
static <K,V,W> MapStream<K,W> |
MapStream.Impl.map(MapStream<K,V> s,
BiMapper<K,V,W> mapper) |
<W> MapStream<K,Iterable<W>> |
MapStream.mapValuesMulti(BiMapper<? super K,? super V,Iterable<W>> mapper) |
<W> MapStream<K,Iterable<W>> |
MapStream.AbstractMapStream.mapValuesMulti(BiMapper<? super K,? super V,Iterable<W>> iterableBiMapper) |
static <K,V,W> MapStream<K,Iterable<W>> |
MapStream.Impl.mapValuesMulti(MapStream<K,V> s,
BiMapper<? super K,? super V,Iterable<W>> iterableBiMapper) |
Copyright © 2012-2014 Julian Hyde. All Rights Reserved.