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.
-
identicon Graphics.Identicon No documentation available.
-
indents Text.Parsec.Indent <+/> is to indentation sensitive parsers what ap is to monads
(
<++> ) :: forall (n :: Nat) a (m :: Nat) . NList n a -> NList m a -> NList (n + m) aindexed-containers Data.NList Append two lists.
mk2 'a' 'b' <++> mk3 'c' 'd' 'e' === mk5 'a' 'b' 'c' 'd' 'e'
data ((f :: k -> Type)
:+: (g :: k -> Type)) (p :: k)kind-generics Generics.Kind Sums: encode choice between constructors
(
$+$ ) :: Doc ann -> Doc ann -> Doc annlanguage-bash Language.Bash.Pretty x $+$ y concatenates x and y with a line in between
(
$++$ ) :: Doc ann -> Doc ann -> Doc annlanguage-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
andmempty $++$ y == y
(
<++> ) :: Doc ann -> Doc ann -> Doc annlanguage-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
andmempty <++> y == y
(
.+^ ) :: StateSpace p => p -> Diff p -> plearn-physics Physics.Learn Point plus vector
(
^+^ ) :: AdditiveGroup v => v -> v -> vlearn-physics Physics.Learn Add vectors
(
^+^ ) :: AdditiveGroup v => v -> v -> vlearn-physics Physics.Learn.CarrotVec Add vectors