diff options
Diffstat (limited to 'Alpha.hs')
-rw-r--r-- | Alpha.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -64,7 +64,7 @@ import Data.String import Data.Text (Text) import qualified Data.Text as Text import qualified Data.Text.Lazy as LazyText -import Protolude as X hiding (($), (&)) +import Protolude as X hiding (($), (&), (.)) -- | Debugging printf say :: Text -> IO () @@ -112,7 +112,7 @@ f |> g = g f -- | Alias for <&>. Can be read as "and then". Basically does into a -- functor, does some computation, then returns the same kind of --- functor. Could also be defined as `f >>= return . g` +-- functor. Could also be defined as `f >>= return <. g` (/>) :: Functor f => f a -> (a -> b) -> f b f /> g = fmap g f |