Commit 3c7bce12 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] function composition orientation.

parent d655af52
...@@ -256,11 +256,11 @@ unMaybe = map fromJust . L.filter isJust ...@@ -256,11 +256,11 @@ unMaybe = map fromJust . L.filter isJust
(|>) = flip ($) (|>) = flip ($)
-- | Function composition orientation -- | Function composition orientation
(<.) :: (a -> b) -> (b -> c) -> a -> c (<.) :: (b -> c) -> (a -> b) -> a -> c
(<.) = (.) (<.) = (.)
-- | Function composition orientation -- | Function composition orientation
(.>) :: (b -> c) -> (a -> b) -> a -> c (.>) :: (a -> b) -> (b -> c) -> a -> c
(.>) = flip (.) (.>) = 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