Uses of Interface
io.github.pr0methean.betterrandom.util.SerializableFunction
-
Packages that use SerializableFunction Package Description io.github.pr0methean.betterrandom.prng.adapter Implementations ofBaseRandom
that are backed by instances ofSplittableRandom
orRandom
, many of them wrapped inThreadLocal
<?>
to allow concurrent use of a shared instance by multiple threads. -
-
Uses of SerializableFunction in io.github.pr0methean.betterrandom.prng.adapter
Constructors in io.github.pr0methean.betterrandom.prng.adapter with parameters of type SerializableFunction Constructor Description ReseedingThreadLocalRandomWrapper(int seedSize, SeedGenerator seedGenerator, SerializableFunction<byte[],? extends T> creator)
Wraps a seed generator and a function that takes a seed byte array as input.ThreadLocalRandomWrapper(int seedSize, SeedGenerator seedGenerator, SerializableFunction<byte[],? extends T> creator)
Wraps a seed generator and a function that takes a seed byte array as input.
-