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.

  1. (&:*) :: forall (tag :: Symbol) m e t . (Sayable tag m, Sayable tag e, Foldable t) => m -> t e -> Saying tag

    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"
    

  2. (..:) :: (d -> e) -> (a -> b -> c -> d) -> a -> b -> c -> e

    speculate Test.Speculate.Utils

    No documentation available.

  3. (.:) :: (c -> d) -> (a -> b -> c) -> a -> b -> d

    speculate Test.Speculate.Utils

    No documentation available.

  4. ($/:) :: forall f sig yv0 yv1 (arrow :: Type -> Type -> Type) rate amp0 amp1 . (Applicative f, Transform sig yv0, Transform sig yv1, Applicable arrow rate) => f (Single arrow amp0 amp1 yv0 yv1) -> f (T rate amp0 (sig yv0)) -> f (T rate amp1 (sig yv1))

    synthesizer-dimensional Synthesizer.Dimensional.Arrow

    No documentation available.

  5. ($/:) :: (Applicative f, Transform sig yv0, Transform sig yv1) => f (Single s amp0 amp1 yv0 yv1) -> f (T (Phantom s) amp0 (sig yv0)) -> f (T (Phantom s) amp1 (sig yv1))

    synthesizer-dimensional Synthesizer.Dimensional.Causal.Process

    No documentation available.

  6. ($:) :: Applicative f => f (a -> b) -> f a -> f b

    synthesizer-dimensional Synthesizer.Dimensional.Process

    This corresponds to <*>

  7. ($::) :: (Applicative f, Traversable t) => f (t a -> b) -> t (f a) -> f b

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

  8. (.:) :: (Applicative f, Arrow arrow) => f (arrow b c) -> f (arrow a b) -> f (arrow a c)

    synthesizer-dimensional Synthesizer.Dimensional.Process

    No documentation available.

  9. (%:) :: LaTeXC l => l -> Text -> l

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

  10. (!:) :: LaTeXC l => l -> l -> l

    HaTeX Text.LaTeX.Base.Math

    Subscript.

Page 88 of many | Previous | Next