Uses of Interface
java.util.function.LongSupplier
Package
Description
Contains the collections framework, some internationalization support classes,
a service loader, properties, random number generation, string parsing
and scanning classes, base64 encoding and decoding, a bit array, and
several miscellaneous utility classes.
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
-
Uses of LongSupplier in java.util
Modifier and TypeMethodDescriptionlong
OptionalLong.orElseGet
(LongSupplier supplier) If a value is present, returns the value, otherwise returns the result produced by the supplying function. -
Uses of LongSupplier in java.util.stream
Modifier and TypeMethodDescriptionstatic LongStream
LongStream.generate
(LongSupplier s) Returns an infinite sequential unordered stream where each element is generated by the providedLongSupplier
.