packages feed

purescript-0.8.0.0: examples/docs/src/NewOperators.purs

module NewOperators
  ( module NewOperators2 )
  where

import NewOperators2

module NewOperators2 where

infixl 8 _compose as >>>

_compose :: forall a b c. (b -> c) -> (a -> b) -> (a -> c)
_compose f g x = f (g x)