CtxBiFunction
typealias CtxBiFunction<Context, InputA, InputB, Result> = suspend (Context, InputA, InputB) -> Result(source)
Similiar to BiFunction but additionally accepts a context as an extra argument.
Parameters
Context
the type of the context
InputA
the type of the first argument
InputB
the type of the second argument
Result
the type of the result