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

functionalj.stream.ToBigIntegerStreamProcessor Maven / Gradle / Ivy

package functionalj.stream;

import java.math.BigInteger;

import functionalj.lens.lenses.BigIntegerAccess;

@FunctionalInterface
public interface ToBigIntegerStreamProcessor extends StreamProcessor, BigIntegerAccess> {
    @Override
    public default BigInteger applyUnsafe(StreamPlus input) throws Exception {
        return process(input);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy