Hoogle Search

Within LTS Haskell 24.49 (ghc-9.10.3)

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

  1. data a :+ b

    identicon Graphics.Identicon

    The (:+) type operator is used to attach Consumers to Identicon, thus adding layers to it and exhausting the bytes that are available for identicon generation. An example of identicon that can be generated from 16 byte hash is shown below:

    type Icon = Identicon 16 :+ Consumer 5 :+ Consumer 5 :+ Consumer 6
    
    The identicon above has three layers.

  2. (:+) :: a -> b -> (:+) a b

    identicon Graphics.Identicon

    No documentation available.

  3. (<+/>) :: 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

  4. (<++>) :: 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'
    

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

    kind-generics Generics.Kind

    Sums: encode choice between constructors

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

    language-bash Language.Bash.Pretty

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

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

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

    learn-physics Physics.Learn

    Point plus vector

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

    learn-physics Physics.Learn

    Add vectors

Page 67 of many | Previous | Next