@FunctionalInterface
public interface ToCharBiFunction<T,U>
BiFunction
that produces a char
value for two input values of given
types. Adapted from ToIntBiFunction
and the like.Modifier and Type | Method and Description |
---|---|
char |
applyAsChar(T t,
U u)
Apply this function to the given input value.
|