BiConsumer<T, U> typedef

BiConsumer<T, U> = BiFunction<T, U, void>

Represents an operation that accepts two input arguments and returns no result

Implementation

typedef BiConsumer<T,U> = BiFunction<T, U, void>;