Uses of Interface
java.util.function.IntFunction
-
Packages that use IntFunction 软件包 描述 java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.stream 支持元素流功能性操作的类,例如集合上的map-reduce转换。 -
-
Uses of IntFunction in java.util
Methods in java.util with parameters of type IntFunction Modifier and Type 方法 描述 static <T> void
Arrays. parallelSetAll(T[] array, IntFunction<? extends T> generator)
使用提供的生成函数来并行设置指定数组的所有元素来计算每个元素。static <T> void
Arrays. setAll(T[] array, IntFunction<? extends T> generator)
使用提供的生成函数来计算每个元素,设置指定数组的所有元素。 -
Uses of IntFunction in java.util.stream
Methods in java.util.stream with parameters of type IntFunction Modifier and Type 方法 描述 IntStream
IntStream. flatMap(IntFunction<? extends IntStream> mapper)
返回由通过将提供的映射函数应用于每个元素而产生的映射流的内容来替换该流的每个元素的结果的流。<U> Stream<U>
IntStream. mapToObj(IntFunction<? extends U> mapper)
返回一个对象值Stream
其中包含将给定函数应用于此流的元素的结果。<A> A[]
Stream. toArray(IntFunction<A[]> generator)
Returns an array containing the elements of this stream, using the providedgenerator
function to allocate the returned array, as well as any additional arrays that might be required for a partitioned execution or for resizing.
-