Hoogle Search

Within LTS Haskell 24.2 (ghc-9.10.2)

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

  1. (>>>) :: Arrow arr => forall a b c . () => arr a b -> arr b c -> arr a c

    base GHC.Desugar

    No documentation available.

  2. (>>>) :: Arrow arr => forall a b c . () => arr a b -> arr b c -> arr a c

    ghc-internal GHC.Internal.Desugar

    No documentation available.

  3. (>>>) :: forall (m :: Type -> Type) b a . Monad m => (b -> a) -> Predicate m a -> Predicate m b

    skeletest Skeletest.Internal.Predicate

    Same as <<<, except with the arguments flipped.

    >>> "hello" `shouldSatisfy` (length P.>>> P.eq 5)
    

  4. (>>>) :: forall (m :: Type -> Type) b a . Monad m => (b -> a) -> Predicate m a -> Predicate m b

    skeletest Skeletest.Predicate

    Same as <<<, except with the arguments flipped.

    >>> "hello" `shouldSatisfy` (length P.>>> P.eq 5)
    

  5. (>>>) :: IOMcn a b -> IOMcn b c -> IOMcn a c

    io-machine IOMcn

    No documentation available.

  6. (>>>) :: (Category k, Object k a, Object k b, Object k c) => k a b -> k b c -> k a c

    constrained-categories Control.Arrow.Constrained

    No documentation available.

  7. (>>>=) :: forall e1 (m :: Type -> Type) a b e2 . (Data e1, Monad m) => Cell (ExceptT e1 m) a b -> Cell (ExceptT e2 m) (e1, a) b -> Cell (ExceptT e2 m) a b

    essence-of-live-coding LiveCoding.Exceptions

    No documentation available.

  8. (>>>==) :: forall e1 (m :: Type -> Type) a b e2 . (Data e1, Monad m) => Cell (ExceptT e1 m) a b -> Cell (ReaderT e1 (ExceptT e2 m)) a b -> Cell (ExceptT e2 m) a b

    essence-of-live-coding LiveCoding.Exceptions

    No documentation available.

  9. (>>>=) :: (Bound t, Monad f) => t f a -> (a -> f c) -> t f c

    bound Bound

    Perform substitution If t is an instance of MonadTrans and you are compiling on GHC >= 7.4, then this gets the default definition:

    m >>>= f = m >>= lift . f
    

  10. (>>>=) :: (Bound t, Monad f) => t f a -> (a -> f c) -> t f c

    bound Bound.Class

    Perform substitution If t is an instance of MonadTrans and you are compiling on GHC >= 7.4, then this gets the default definition:

    m >>>= f = m >>= lift . f
    

Page 1 of many | Next