Skip to content

Instantly share code, notes, and snippets.

@ythirion
Created December 18, 2019 15:22
Show Gist options
  • Save ythirion/c3a80e17e44fea356345515a47a9b479 to your computer and use it in GitHub Desktop.
Save ythirion/c3a80e17e44fea356345515a47a9b479 to your computer and use it in GitHub Desktop.
function composition
static Func<int, int> Add2 = x => x + 2;
static Func<int, int> Add3 = x => x + 3;
static int Add5(int x) => Add2.Compose(Add3)(x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment