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. (:+) :: a -> b -> (:+) a b

    identicon Graphics.Identicon

    No documentation available.

  2. (<+/>) :: forall (m :: Type -> Type) s z u a b . (Monad m, Stream s (IndentT m) z) => IndentParserT s u m (a -> b) -> IndentParserT s u m a -> IndentParserT s u m b

    indents Text.Parsec.Indent

    <+/> is to indentation sensitive parsers what ap is to monads

  3. (<++>) :: forall (n :: Nat) a (m :: Nat) . NList n a -> NList m a -> NList (n + m) a

    indexed-containers Data.NList

    Append two lists.

    mk2 'a' 'b' <++> mk3 'c' 'd' 'e' === mk5 'a' 'b' 'c' 'd' 'e'
    

  4. data ((f :: k -> Type) :+: (g :: k -> Type)) (p :: k)

    kind-generics Generics.Kind

    Sums: encode choice between constructors

  5. ($+$) :: Doc ann -> Doc ann -> Doc ann

    language-bash Language.Bash.Pretty

    x $+$ y concatenates x and y with a line in between

  6. ($++$) :: Doc ann -> Doc ann -> Doc ann

    language-bash Language.Bash.Pretty

    Behaves like $+$ except that if one of the documents was empty we do not concatenate at all. mempty is the identity of $+$:

    x $++$ mempty == x
    
    and
    mempty $++$ y == y
    

  7. (<++>) :: Doc ann -> Doc ann -> Doc ann

    language-bash Language.Bash.Pretty

    Behaves like <+> except that if one of the documents was empty we do not concatenate at all. mempty is the identity of <+>:

    x <++> mempty == x
    
    and
    mempty <++> y == y
    

  8. (.+^) :: StateSpace p => p -> Diff p -> p

    learn-physics Physics.Learn

    Point plus vector

  9. (^+^) :: AdditiveGroup v => v -> v -> v

    learn-physics Physics.Learn

    Add vectors

  10. (^+^) :: AdditiveGroup v => v -> v -> v

    learn-physics Physics.Learn.CarrotVec

    Add vectors

Page 67 of many | Previous | Next