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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 LongStream
IntStream. mapToLong(IntToLongFunction mapper)
返回一个LongStream
其中包含将给定函数应用于此流的元素的结果。
-