Hoogle Search

Within LTS Haskell 22.21 (ghc-9.6.5)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. arrIO :: ArrowIO a => (b -> IO c) -> a b c

    hxt Control.Arrow.ArrowIO

    construct an arrow from an IO action

  2. arrIO0 :: ArrowIO a => IO c -> a b c

    hxt Control.Arrow.ArrowIO

    construct an arrow from an IO action without any parameter

  3. arrIO2 :: ArrowIO a => (b1 -> b2 -> IO c) -> a (b1, b2) c

    hxt Control.Arrow.ArrowIO

    construction of a 2 argument arrow from a binary IO action | | example: a1 &&& a2 >>> arr2 f

  4. arrIO3 :: ArrowIO a => (b1 -> b2 -> b3 -> IO c) -> a (b1, (b2, b3)) c

    hxt Control.Arrow.ArrowIO

    construction of a 3 argument arrow from a 3-ary IO action | | example: a1 &&& a2 &&& a3 >>> arr3 f

  5. arrIO4 :: ArrowIO a => (b1 -> b2 -> b3 -> b4 -> IO c) -> a (b1, (b2, (b3, b4))) c

    hxt Control.Arrow.ArrowIO

    construction of a 4 argument arrow from a 4-ary IO action | | example: a1 &&& a2 &&& a3 &&& a4 >>> arr4 f

Page 1 of 1