functionalj.lens.lenses.IntegerToDoubleAccessEqualPrimitive 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.
// ============================================================================
// Copyright (c) 2017-2021 Nawapunth Manusitthipol (NawaMan - http://nawaman.net).
// ----------------------------------------------------------------------------
// MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ============================================================================
package functionalj.lens.lenses;
import static functionalj.lens.lenses.DoubleAccess.equalPrecisionToUse;
import java.util.function.DoubleSupplier;
import java.util.function.DoubleUnaryOperator;
import functionalj.function.DoubleIntegerToDoubleFunction;
import lombok.NonNull;
import lombok.val;
public class IntegerToDoubleAccessEqualPrimitive extends DoubleAccessEqual implements IntegerToBooleanAccessPrimitive {
final DoubleIntegerToDoubleFunction anotherValueFunction;
IntegerToDoubleAccessEqualPrimitive(
boolean isNegate,
@NonNull IntegerToDoubleAccessPrimitive access,
@NonNull DoubleIntegerToDoubleFunction anotherValueFunction) {
super(isNegate, access, (host, value) -> anotherValueFunction.applyAsDouble(host, value));
this.anotherValueFunction = anotherValueFunction;
}
@Override
public boolean test(int host) {
val value = access.applyAsDouble(host);
val anotherValue = anotherValueFunction.applyAsDouble(host, value);
val error = Math.abs(value - anotherValue);
val precision = equalPrecisionToUse.get().getAsDouble();
return isNegate != (error <= precision);
}
@Override
public boolean applyIntToBoolean(int host) {
return test(host);
}
public IntegerToDoubleAccessEqualPrecisionPrimitive withIn(double precision) {
return new IntegerToDoubleAccessEqualPrecisionPrimitive(this, error -> precision);
}
public IntegerToDoubleAccessEqualPrecisionPrimitive withPrecision(double precision) {
return new IntegerToDoubleAccessEqualPrecisionPrimitive(this, error -> precision);
}
public IntegerToDoubleAccessEqualPrecisionPrimitive withPrecision(@NonNull DoubleSupplier precisionSupplier) {
return new IntegerToDoubleAccessEqualPrecisionPrimitive(this, error -> precisionSupplier.getAsDouble());
}
public IntegerToDoubleAccessEqualPrecisionPrimitive withPrecision(@NonNull DoubleUnaryOperator precisionFunction) {
return new IntegerToDoubleAccessEqualPrecisionPrimitive(this, precisionFunction);
}
}