| 1 | package com.github.valid8j.pcond.core.fluent.builtins; | |
| 2 | ||
| 3 | ||
| 4 | import com.github.valid8j.pcond.internals.InternalUtils; | |
| 5 | ||
| 6 | import java.util.function.Function; | |
| 7 | import java.util.function.Supplier; | |
| 8 | ||
| 9 | public interface FloatChecker< | |
| 10 | T> extends | |
| 11 | ComparableNumberChecker< | |
| 12 | FloatChecker<T>, | |
| 13 | T, | |
| 14 | Float> { | |
| 15 | class Impl< | |
| 16 | T> extends | |
| 17 | Base< | |
| 18 | FloatChecker<T>, | |
| 19 | T, | |
| 20 | Float> | |
| 21 | implements FloatChecker<T> { | |
| 22 | public Impl(Supplier<T> rootValue, Function<T, Float> root) { | |
| 23 | super(rootValue, root); | |
| 24 | } | |
| 25 | ||
| 26 | @Override | |
| 27 | public FloatChecker<Float> rebase() { | |
| 28 |
1
1. rebase : replaced return value with null for com/github/valid8j/pcond/core/fluent/builtins/FloatChecker$Impl::rebase → SURVIVED |
return new Impl<>(this::value, InternalUtils.trivialIdentityFunction()); |
| 29 | } | |
| 30 | } | |
| 31 | } | |
Mutations | ||
| 28 |
1.1 |