Uses of Interface
org.apache.commons.rng.simple.internal.SeedConverter
-
Packages that use SeedConverter Package Description org.apache.commons.rng.simple.internal Utilities for seed conversion. -
-
Uses of SeedConverter in org.apache.commons.rng.simple.internal
Subinterfaces of SeedConverter in org.apache.commons.rng.simple.internal Modifier and Type Interface Description interface
Seed2ArrayConverter<IN,OUT>
Seed converter to create an output array type.Classes in org.apache.commons.rng.simple.internal that implement SeedConverter Modifier and Type Class Description class
ByteArray2IntArray
Creates aint[]
from abyte[]
.class
ByteArray2LongArray
Creates along[]
from abyte[]
.class
Int2Long
Converts aInteger
to anLong
.class
IntArray2Int
Creates a single value by "xor" of all the values in the input array.class
IntArray2LongArray
Creates along[]
from anint[]
.class
Long2Int
Converts aLong
to anInteger
.class
Long2IntArray
Uses along
value to seed aSplitMix64
RNG and create aint[]
with the requested number of random values.class
Long2LongArray
Uses aLong
value to seed aSplitMix64
RNG and create along[]
with the requested number of random values.class
LongArray2IntArray
Creates anint[]
from along[]
.class
LongArray2Long
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
.Constructors in org.apache.commons.rng.simple.internal with parameters of type SeedConverter Constructor Description SeedConverterComposer(SeedConverter<IN,TRANS> first, SeedConverter<TRANS,OUT> second)
-