com.koloboke.function
Interface CharCharToCharFunction

All Known Subinterfaces:
CharBinaryOperator

public interface CharCharToCharFunction

Represents a function that accepts two char-valued arguments and produces a char-valued result. This is the (char, char, char) specialization of BiFunction.

Unlike CharBinaryOperator, this function is supposed to accept heterogeneous arguments, e. g. key and value in CharCharMap.compute(char, CharCharToCharFunction) method.

See Also:
BiFunction

Method Summary
 char applyAsChar(char a, char b)
          Applies this function to the given arguments.
 

Method Detail

applyAsChar

char applyAsChar(char a,
                 char b)
Applies this function to the given arguments.

Parameters:
a - the first function argument
b - the second function argument
Returns:
the function result