Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. ($+$) :: Doc -> Doc -> Doc

    ghc GHC.Utils.Ppr

    Above, with no overlapping. $+$ is associative, with identity empty.

  2. (<+>) :: Doc -> Doc -> Doc

    ghc GHC.Utils.Ppr

    Beside, separated by space, unless one of the arguments is empty. <+> is associative, with identity empty.

  3. type family (l1 :: [Type]) .++ (l2 :: [Type]) :: [Type]

    servant-server Servant.Server

    Append two type-level lists. Import it as

    import Servant.API.TypeLevel.List (type (.++))
    

  4. (.++) :: forall (l1 :: [Type]) (l2 :: [Type]) . Context l1 -> Context l2 -> Context (l1 .++ l2)

    servant-server Servant.Server

    Append two contexts.

  5. (.++) :: forall (l1 :: [Type]) (l2 :: [Type]) . Context l1 -> Context l2 -> Context (l1 .++ l2)

    servant-server Servant.Server.Internal.Context

    Append two contexts.

  6. (<+<) :: forall (m :: Type -> Type) c' b' b c r a' a . Functor m => (c' -> Proxy b' b c' c m r) -> (b' -> Proxy a' a b' b m r) -> c' -> Proxy a' a c' c m r

    pipes Pipes.Core

    Equivalent to (>+>) with the arguments flipped

  7. (<<+) :: forall (m :: Type -> Type) b' b c' c r a' a . Functor m => Proxy b' b c' c m r -> (b' -> Proxy a' a b' b m r) -> Proxy a' a c' c m r

    pipes Pipes.Core

    Equivalent to (+>>) with the arguments flipped

  8. (>+>) :: forall (m :: Type -> Type) b' a' a b r _c' c' c . Functor m => (b' -> Proxy a' a b' b m r) -> (_c' -> Proxy b' b c' c m r) -> _c' -> Proxy a' a c' c m r

    pipes Pipes.Core

    Compose two proxies blocked in the middle of responding, creating a new proxy blocked in the middle of responding

    (f >+> g) x = f +>> g x
    
    (>+>) is the composition operator of the pull category.

  9. (:=+) :: (c -> f) -> [Annotate ann] -> Annotate ann

    cmdargs System.Console.CmdArgs.Annotate

    Add annotations to a field.

  10. (.+^) :: (Affine p, Num a) => p a -> Diff p a -> p a

    linear Linear.Affine

    Add a vector offset to a point.

Page 42 of many | Previous | Next