/**
  * Returns a composed {@link FloatBinaryOperator} that first applies the {@code before} predicates
  * to its input, and then applies this function to the result. If evaluation of either operation
  * throws an exception, it is relayed to the caller of the composed operation. This method is just
  * convenience, to provide the ability to execute an operation which accepts {@code float} input,
  * before this primitive function is executed.
  *
  * @param before1 The first predicate to apply before this function is applied
  * @param before2 The second predicate to apply before this function is applied
  * @return A composed {@code FloatBinaryOperator} that first applies the {@code before} predicates
  *     to its input, and then applies this function to the result.
  * @throws NullPointerException If given argument is {@code null}
  * @implSpec The input argument of this method is a able to handle primitive values. In this case
  *     this is {@code float}.
  */
 @Nonnull
 default FloatBinaryOperator composeFromFloat(
     @Nonnull final FloatPredicate before1, @Nonnull final FloatPredicate before2) {
   Objects.requireNonNull(before1);
   Objects.requireNonNull(before2);
   return (value1, value2) -> applyAsFloat(before1.test(value1), before2.test(value2));
 }
 /**
  * Returns a composed {@link BooleanBinaryOperator} that first applies this function to its input,
  * and then applies the {@code after} predicate to the result. If evaluation of either operation
  * throws an exception, it is relayed to the caller of the composed operation. This method is just
  * convenience, to provide the ability to transform this primitive function to an operation
  * returning {@code boolean}.
  *
  * @param after The predicate to apply after this function is applied
  * @return A composed {@code BooleanBinaryOperator} that first applies this function to its input,
  *     and then applies the {@code after} predicate to the result.
  * @throws NullPointerException If given argument is {@code null}
  * @implSpec The input argument of this method is a able to return primitive values. In this case
  *     this is {@code boolean}.
  */
 @Nonnull
 default BooleanBinaryOperator andThenToBoolean(@Nonnull final FloatPredicate after) {
   Objects.requireNonNull(after);
   return (value1, value2) -> after.test(applyAsFloat(value1, value2));
 }
 /**
  * Returns a composed {@link ObjDoublePredicate} that first applies this function to its input,
  * and then applies the {@code after} predicate to the result. If evaluation of either operation
  * throws an exception, it is relayed to the caller of the composed operation. This method is just
  * convenience, to provide the ability to transform this primitive function to an operation
  * returning {@code boolean}.
  *
  * @param after The predicate to apply after this function is applied
  * @return A composed {@code ObjDoublePredicate} that first applies this function to its input,
  *     and then applies the {@code after} predicate to the result.
  * @throws NullPointerException If given argument is {@code null}
  * @implSpec The input argument of this method is a able to return primitive values. In this case
  *     this is {@code boolean}.
  */
 @Nonnull
 default ObjDoublePredicate<T> andThenToBoolean(@Nonnull final FloatPredicate after) {
   Objects.requireNonNull(after);
   return (t, value) -> after.test(applyAsFloat(t, value));
 }