Uses of Interface
java.util.function.IntToLongFunction
-
Packages that use IntToLongFunction 软件包 描述 java.util 包含集合框架,一些国际化支持类,服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,位数组和几个其他实用程序类。java.util.stream 用于支持元素流上的功能样式操作的类,例如集合上的map-reduce转换。 -
-
Uses of IntToLongFunction in java.util
Methods in java.util with parameters of type IntToLongFunction 变量和类型 方法 描述 static void
Arrays. parallelSetAll(long[] array, IntToLongFunction generator)
使用提供的生成器函数并行设置指定数组的所有元素以计算每个元素。static void
Arrays. setAll(long[] array, IntToLongFunction generator)
使用提供的生成器函数设置指定数组的所有元素以计算每个元素。 -
Uses of IntToLongFunction in java.util.stream
Methods in java.util.stream with parameters of type IntToLongFunction 变量和类型 方法 描述 LongStream
IntStream. mapToLong(IntToLongFunction mapper)
返回LongStream
其中包含将给定函数应用于此流的元素的结果。
-