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.
-
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. -
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