-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | More intuitive, left-to-right function composition. -- -- More intuitive, left-to-right function composition. @package compose-ltr @version 0.2.2 module Data.Function.Compose.LeftToRight ($>) :: a -> (a -> c) -> c (.>) :: (a -> b) -> (b -> c) -> a -> c (<$) :: (a -> b) -> a -> b (<.) :: (b -> c) -> (a -> b) -> a -> c module ComposeLTR