Hoogle Search

Within LTS Haskell 24.42 (ghc-9.10.3)

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

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

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

    HaTeX Text.LaTeX.Base.Math

    Subscript.

  3. (*:) :: LaTeXC l => l -> l -> l

    HaTeX Text.LaTeX.Base.Math

    Asterisk operator <math>.

    infixl 7 *:
    

  4. (/=:) :: LaTeXC l => l -> l -> l

    HaTeX Text.LaTeX.Base.Math

    Not equal <math>.

    infixr 4 /=:
    

  5. (<:) :: LaTeXC l => l -> l -> l

    HaTeX Text.LaTeX.Base.Math

    Lesser <math>.

  6. (<=:) :: LaTeXC l => l -> l -> l

    HaTeX Text.LaTeX.Base.Math

    Lesser or equal <math>.

  7. (=:) :: LaTeXC l => l -> l -> l

    HaTeX Text.LaTeX.Base.Math

    Simple equals sign <math>.

    infixr 4 =:
    

  8. (>:) :: LaTeXC l => l -> l -> l

    HaTeX Text.LaTeX.Base.Math

    Greater <math>.

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

    HaTeX Text.LaTeX.Base.Math

    Greater or equal <math>.

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

    HaTeX Text.LaTeX.Base.Math

    Superscript.

Page 89 of many | Previous | Next