Eta conversion

From HaskellWiki
Revision as of 03:40, 30 January 2007 by Nedervold (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

An eta conversion (also written η-conversion) is adding or dropping of abstraction over a function. For example, the following two values are equivalent under η-conversion:

\x -> abs x
and
abs

Extensive use of η-reduction can lead to Pointfree programming.