pointfree icon indicating copy to clipboard operation
pointfree copied to clipboard

Maintenance of the pointfree Hackage package.

Results 4 pointfree issues
Sort by recently updated
recently updated
newest added

Sometimes this will produce very different point free code. Example: `λ :pf func f gs x = f $ map ($ x) gs` produces: `func = (. flip (map ....

Consider the following interaction with `pointfree`, which spouts an error about Template Haskell seemingly out of the blue. ``` # pointfree 'a . b ? c' TemplateHaskell language extension is...

Passing `flip' x y = y x` on pointfree.io returns `flip' = flip id` instead of just `flip' = flip`, which would be equivalent, and neater.

I passed this input to pointfree.io: ```haskell latterLetter1d alphabet letter = (elemIndex letter alphabet) `further` latter alphabet ``` This was the output: ```haskell latterLetter1d = ap (flip . (further .)...