Uses of Interface
org.infinispan.util.function.SerializableIntFunction
-
Packages that use SerializableIntFunction Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform. -
-
Uses of SerializableIntFunction in org.infinispan
Methods in org.infinispan with parameters of type SerializableIntFunction Modifier and Type Method Description default IntCacheStream
IntCacheStream. flatMap(SerializableIntFunction<? extends java.util.stream.IntStream> mapper)
Same asIntCacheStream.flatMap(IntFunction)
except that the IntFunction must also implementSerializable
default <U> CacheStream<U>
IntCacheStream. mapToObj(SerializableIntFunction<? extends U> mapper)
Same asIntCacheStream.mapToObj(IntFunction)
except that the IntFunction must also implementSerializable
default <A> A[]
CacheStream. toArray(SerializableIntFunction<A[]> generator)
Same asStream.toArray(IntFunction)
except that the BinaryOperator must also implementSerializable
-