Skip to content

Instantly share code, notes, and snippets.

@CMCDragonkai
Created May 25, 2016 06:37
Show Gist options
  • Select an option

  • Save CMCDragonkai/0a589434f1d9c34005ed3e16a12edf4c to your computer and use it in GitHub Desktop.

Select an option

Save CMCDragonkai/0a589434f1d9c34005ed3e16a12edf4c to your computer and use it in GitHub Desktop.
Lambda Calculus: Eta Expansion vs Eta Reduction

Eta Expansion vs Eta Reduction

  • Eta expansion is going from point-free to pointy: id => \x -> id x.
  • Eta reduction is going from pointy to point-free: \x -> id x => id.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment