Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
sayable Text.Sayable A helper operator that generates a sayable from a list of sayable items, separated by the first sayable argument (instead of the ", " that use used by the &* operator).
>>> sez @"info" $ t'"three:" &- t'".." &:* [1, 2, 3::Int] "three: 1..2..3"
(
..: ) :: (d -> e) -> (a -> b -> c -> d) -> a -> b -> c -> especulate Test.Speculate.Utils No documentation available.
(
.: ) :: (c -> d) -> (a -> b -> c) -> a -> b -> dspeculate Test.Speculate.Utils No documentation available.
-
synthesizer-dimensional Synthesizer.Dimensional.Arrow No documentation available.
-
synthesizer-dimensional Synthesizer.Dimensional.Causal.Process No documentation available.
(
$: ) :: Applicative f => f (a -> b) -> f a -> f bsynthesizer-dimensional Synthesizer.Dimensional.Process This corresponds to <*>
(
$:: ) :: (Applicative f, Traversable t) => f (t a -> b) -> t (f a) -> f bsynthesizer-dimensional Synthesizer.Dimensional.Process Instead of mixMulti $:: map f xs the caller should write mixMulti $: mapM f xs in order to save the user from learning another infix operator.
(
.: ) :: (Applicative f, Arrow arrow) => f (arrow b c) -> f (arrow a b) -> f (arrow a c)synthesizer-dimensional Synthesizer.Dimensional.Process No documentation available.
(
%: ) :: LaTeXC l => l -> Text -> lHaTeX Text.LaTeX.Base.Commands This operator appends a comment after a expression. For example:
textbf "I'm just an example." %: "Insert a few words here."
The implementation is(%:) l = (l <>) . comment
Since you are writing in Haskell, you may not need to output comments as you can add them in the Haskell source. I added this feature for completeness. It may be useful for debugging the output as well.(
!: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Subscript.