functionalj.stream.ToBigDecimalStreamProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionalj-core Show documentation
Show all versions of functionalj-core Show documentation
The module for FunctionalJ Core.
package functionalj.stream;
import java.math.BigDecimal;
import functionalj.lens.lenses.BigDecimalAccess;
@FunctionalInterface
public interface ToBigDecimalStreamProcessor extends StreamProcessor, BigDecimalAccess> {
@Override
public default BigDecimal applyUnsafe(StreamPlus input) throws Exception {
return process(input);
}
}