com.github.dm.jrt.function.BiFunctionWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jroutine Show documentation
Show all versions of jroutine Show documentation
Parallel programming on the go
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.dm.jrt.function;
import com.github.dm.jrt.util.Reflection;
import org.jetbrains.annotations.NotNull;
/**
* Class wrapping a bi-function instance.
*
* Created by davide-maestroni on 10/16/2015.
*
* @param the first input data type.
* @param the second input data type.
* @param the output data type.
*/
public class BiFunctionWrapper implements BiFunction {
private final BiFunction mBiFunction;
private final FunctionWrapper, OUT> mFunction;
/**
* Constructor.
*
* @param biFunction the initial wrapped supplier.
* @param function the concatenated function chain.
*/
@SuppressWarnings("ConstantConditions")
BiFunctionWrapper(@NotNull final BiFunction biFunction,
@NotNull final FunctionWrapper, OUT> function) {
if (biFunction == null) {
throw new NullPointerException("the bi-function instance must not be null");
}
if (function == null) {
throw new NullPointerException("the function wrapper must not be null");
}
mBiFunction = biFunction;
mFunction = function;
}
/**
* Returns a composed bi-function wrapper that first applies this function to its input, and
* then applies the after function to the result.
*
* @param after the function to apply after this function is applied.
* @param the type of output of the after function.
* @return the composed bi-function.
*/
@NotNull
public BiFunctionWrapper andThen(
@NotNull final Function super OUT, AFTER> after) {
return new BiFunctionWrapper(mBiFunction, mFunction.andThen(after));
}
@SuppressWarnings("unchecked")
public OUT apply(final IN1 in1, final IN2 in2) {
return ((FunctionWrapper