forked from orion/obsidian
244 B
244 B
Written without explicit arguments and application, e.g.
foo a b = bar a b
can be written point-free as
foo = bar
Rewriting
\a -> g (f a)
as
g << f
is also referred to as point-free.