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 interfaceSeed2ArrayConverter<T,R>Seed converter to create an output array type.Classes in org.apache.commons.rng.simple.internal that implement SeedConverter Modifier and Type Class Description classByteArray2IntArrayCreates aint[]from abyte[].classByteArray2LongArrayCreates along[]from abyte[].classInt2LongConverts aIntegerto anLong.classIntArray2IntCreates a single value by "xor" of all the values in the input array.classIntArray2LongArrayCreates along[]from anint[].classLong2IntConverts aLongto anInteger.classLong2IntArrayUses alongvalue to seed aSplitMix64RNG and create aint[]with the requested number of random values.classLong2LongArrayUses aLongvalue to seed aSplitMix64RNG and create along[]with the requested number of random values.classLongArray2IntArrayCreates anint[]from along[].classLongArray2LongCreates a single value by "xor" of all the values in the input array.classNoOpConverter<T>Dummy converter that simply passes on its input.classSeedConverterComposer<T,S,R>Composes twoconverters.Constructors in org.apache.commons.rng.simple.internal with parameters of type SeedConverter Constructor Description SeedConverterComposer(SeedConverter<T,S> first, SeedConverter<S,R> second)Create an instance.
-