Class IntArray2LongArray
- java.lang.Object
-
- org.apache.commons.rng.simple.internal.IntArray2LongArray
-
- All Implemented Interfaces:
SeedConverter<int[],long[]>
public class IntArray2LongArray extends Object implements SeedConverter<int[],long[]>
Creates along[]
from anint[]
.- Since:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description IntArray2LongArray()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long[]
convert(int[] seed)
Converts seed from input type to output type.
-
-
-
Constructor Detail
-
IntArray2LongArray
public IntArray2LongArray()
-
-
Method Detail
-
convert
public long[] convert(int[] seed)
Converts seed from input type to output type.- Specified by:
convert
in interfaceSeedConverter<int[],long[]>
- Parameters:
seed
- Original seed value.- Returns:
- the converted seed value.
-
-