All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.virtdata.functional.ToBigInt Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package io.virtdata.functional;

import java.math.BigInteger;
import java.util.function.LongFunction;

public class ToBigInt implements LongFunction {
    @Override
    public BigInteger apply(long input) {
        return BigInteger.valueOf(input);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy