Package com.azure.android.core.util
Interface BiConsumer<T,U>
-
- Type Parameters:
T- The type of the first input.U- The type of the second input.
public interface BiConsumer<T,U>Type representing an operation that accepts two input arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(T t, U u)Performs the operation on the given two inputs.
-