Uses of Interface
org.apache.commons.rng.simple.internal.SeedConverter
| Package | Description |
|---|---|
| org.apache.commons.rng.simple.internal |
Utilities for seed conversion.
|
-
Uses of SeedConverter in org.apache.commons.rng.simple.internal
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<SEED>Dummy converter that simply passes on its input.classSeedConverterComposer<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)