Commit 558aa229 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] function composition orientation.

parent d092e9f1
......@@ -256,11 +256,11 @@ unMaybe = map fromJust . L.filter isJust
(|>) = flip ($)
-- | Function composition orientation
(<.) :: (a -> b) -> (b -> c) -> a -> c
(<.) :: (b -> c) -> (a -> b) -> a -> c
(<.) = (.)
-- | Function composition orientation
(.>) :: (b -> c) -> (a -> b) -> a -> c
(.>) :: (a -> b) -> (b -> c) -> a -> c
(.>) = flip (.)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment