Eta conversion
From HaskellWiki
(Redirected from Eta expansion)
\x -> abs x
absConverting from the first to the second would constitute an eta reduction, and moving from the second to the first would be an eta abstraction. The term 'eta conversion' can refer to the process in either direction.
Extensive use of η-reduction can lead to Pointfree programming. It is also typically used in certain compile-time optimisations.
See also
- Haskell-Cafe on What's the motivation for η rules?
