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);
}
}