io.virtdata.libbasics.shared.from_long.to_long.Mul 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_long;
import io.virtdata.annotations.ThreadSafeMapper;
import java.util.function.LongUnaryOperator;
/**
* Return the result of multiplying the specified value with the input.
*/
@ThreadSafeMapper
public class Mul implements LongUnaryOperator {
public Mul(long multiplicand) {
this.multiplicand = multiplicand;
}
private long multiplicand;
@Override
public long applyAsLong(long operand) {
return operand * multiplicand;
}
}