Sharpility
|
Functions | |
delegate void | BiConsumer< in TInput1, in TInput2 > (TInput1 input1, TInput2 input2) |
Consumes two inputs. | |
delegate TOutput | BiConverter< in TInput1, in TInput2, out TOutput > (TInput1 input1, TInput2 input2) |
Converts two inputs into output. | |
delegate void | Consumer< in TInput > (TInput input) |
Consumes input. |
delegate void Sharpility.Function.BiConsumer< in TInput1, in TInput2 > | ( | TInput1 | input1, |
TInput2 | input2 | ||
) |
Consumes two inputs.
TInput1 | First input type |
TInput2 | Second input type |
input1 | First input |
input2 | Second input |
delegate TOutput Sharpility.Function.BiConverter< in TInput1, in TInput2, out TOutput > | ( | TInput1 | input1, |
TInput2 | input2 | ||
) |
Converts two inputs into output.
TInput1 | First input type |
TInput2 | Second input type |
TOutput | Output type |
input1 | First input |
input2 | Second input |
delegate void Sharpility.Function.Consumer< in TInput > | ( | TInput | input | ) |
Consumes input.
TInput | Type of input |
input | consumed input |