Uses of Interface
org.apache.commons.rng.simple.internal.SeedConverter
Packages that use SeedConverter
-
Uses of SeedConverter in org.apache.commons.rng.simple.internal
Subinterfaces of SeedConverter in org.apache.commons.rng.simple.internalModifier and TypeInterfaceDescriptioninterface
Seed2ArrayConverter<IN,
OUT> Seed converter to create an output array type.Classes in org.apache.commons.rng.simple.internal that implement SeedConverterModifier and TypeClassDescriptionclass
Creates aint[]
from abyte[]
.class
Creates along[]
from abyte[]
.class
Converts aInteger
to anLong
.class
Creates a single value by "xor" of all the values in the input array.class
Creates along[]
from anint[]
.class
Converts aLong
to anInteger
.class
Uses along
value to seed aSplitMix64
RNG and create aint[]
with the requested number of random values.class
Uses aLong
value to seed aSplitMix64
RNG and create along[]
with the requested number of random values.class
Creates anint[]
from along[]
.class
Creates a single value by "xor" of all the values in the input array.class
NoOpConverter<SEED>
Dummy converter that simply passes on its input.class
SeedConverterComposer<IN,
TRANS, OUT> Composes twoconverters
.Fields in org.apache.commons.rng.simple.internal declared as SeedConverterModifier and TypeFieldDescriptionprivate final SeedConverter
<IN, TRANS> SeedConverterComposer.first
First conversion.private final SeedConverter
<TRANS, OUT> SeedConverterComposer.second
Second conversion.Constructors in org.apache.commons.rng.simple.internal with parameters of type SeedConverterModifierConstructorDescriptionSeedConverterComposer
(SeedConverter<IN, TRANS> first, SeedConverter<TRANS, OUT> second)