Uses of Interface
java.util.function.LongSupplier
-
Packages that use LongSupplier Package Description java.util Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).java.util.stream Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections. -
-
Uses of LongSupplier in java.util
Methods in java.util with parameters of type LongSupplier Modifier and Type Method Description long
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
Methods in java.util.stream with parameters of type LongSupplier Modifier and Type Method Description static LongStream
LongStream. generate(LongSupplier s)
Returns an infinite sequential unordered stream where each element is generated by the providedLongSupplier
.
-