C# Functional style - Part 2
07/21/2018
In the previous post, I have looked how I could compose methods together:
int RequestHandler(int x) => LogOutput(Add1(LogInput(x)));
As it is a bit difficult to read (inside out), I would like to see alternative solutions to compose them together while achieving the same results.
For the following methods, it is needed that each method has one input parameter and one result returned. In the following posts, I will use the partial application of arguments and currying to achieve this.