Consumer<T> typedef

Consumer<T> = SingleFunction<T, void>

Represents an operation that accepts a single input argument and returns no result.

Implementation

typedef Consumer<T> = SingleFunction<T, void>;