On Tue, Dec 22, 2009 at 3:09 PM, slemi <[email protected]> wrote: > this works fine, but if i leave the 'a' in the last function's definition > like this: > reMatr = Matr . (flip (.) unMatr)
The correct point free version would be : > reMatr = (Matr .) . (. unMatr) -- Jedaï _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
