Package-level declarations
Types
Link copied to clipboard
Represents a potentially suspendable operation that accepts two arguments and produces a result. Based on Java's BiFunction functional interface.
Link copied to clipboard
typealias CtxBiFunction<Context, InputA, InputB, Result> = suspend (Context, InputA, InputB) -> Result
Similiar to BiFunction but additionally accepts a context as an extra argument.
Link copied to clipboard
Link copied to clipboard