Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. data PdfPageLayout

    HaTeX Text.LaTeX.Packages.Hyperref

    Specification for how pages of a PDF should be displayed.

  2. module Text.LaTeX.Packages.TikZ.PathBuilder

    This module provides a monadic interface to build TPath values. It does so using PathBuilders. The construction of a PathBuilder is equivalent to the construction of a TPath by hand, but with a sometimes more convenient syntax. For example, this path corresponds to a triangle:

    trianglePath :: TPath
    trianglePath = bpath (pointAtXY (-1) 0) $ do
    line $ pointAtXY 1 0
    line $ pointAtXY 0 1
    pcycle
    
    The equivalent syntax created by hand would be:
    trianglePath :: TPath
    trianglePath = Cycle $ Start (pointAtXY (-1) 0) ->- pointAtXY 1 0 ->- pointAtXY 0 1
    
    The Cycle constructor at the beginning may seem unintuitive, since we are building the path from left to right. In the PathBuilder monad, the instructions are always written in order.

  3. data PathBuilder a

    HaTeX Text.LaTeX.Packages.TikZ.PathBuilder

    Use a path builder to construct a value of type TPath. Use bpath for this purpose.

  4. type Point = (Double, Double)

    HaTeX Text.LaTeX.Packages.TikZ.Simple

    A point in the plane.

  5. Polygon :: [Point] -> Figure

    HaTeX Text.LaTeX.Packages.TikZ.Simple

    Line along a list of points, but the last point will be joined with the first one.

  6. PolygonFilled :: [Point] -> Figure

    HaTeX Text.LaTeX.Packages.TikZ.Simple

    Same as Polygon, but the inner side will be filled with color.

  7. data Parameter

    HaTeX Text.LaTeX.Packages.TikZ.Syntax

    Parameters to use in a scope to change how things are rendered within that scope.

  8. PointStep :: TPoint -> Step

    HaTeX Text.LaTeX.Packages.TikZ.Syntax

    No documentation available.

  9. PLAIN :: AuthType

    HaskellNet Network.HaskellNet.Auth

    No documentation available.

  10. type Password = String

    HaskellNet Network.HaskellNet.Auth

    No documentation available.

Page 781 of many | Previous | Next