io.virtdata.libbasics.shared.from_long.to_int.FixedValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
package io.virtdata.libbasics.shared.from_long.to_int;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.LongToIntFunction;
@ThreadSafeMapper
public class FixedValues implements LongToIntFunction {
private final int[] fixedValues;
public FixedValues(int... values) {
this.fixedValues = values;
}
@Override
public int applyAsInt(long value) {
int index = (int)(value % Integer.MAX_VALUE) % fixedValues.length;
return fixedValues[index];
}
}