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. module Database.MySQL.Simple.Param

    The Param typeclass, for rendering a parameter to a SQL query.

  2. class Param a

    mysql-simple Database.MySQL.Simple.Param

    A type that may be used as a single parameter to a SQL query. A default implementation is provided for any type which is an instance of ToField, providing a simple mechanism for user-defined encoding to text- or blob-like fields (including JSON).

  3. Plain :: Builder -> Action

    mysql-simple Database.MySQL.Simple.Param

    Render without escaping or quoting. Use for non-text types such as numbers, when you are certain that they will not introduce formatting vulnerabilities via use of characters such as spaces or "'".

  4. data Pos

    numhask-space NumHask.Space

    Pos suggests where points should be placed in forming a grid across a field space.

  5. module NumHask.Space.Point

    A 2-dimensional point.

  6. data Point a

    numhask-space NumHask.Space.Point

    A 2-dimensional Point of a's In contrast with a tuple, a Point is functorial over both arguments.

    >>> let p = Point 1 1
    
    >>> p + p
    Point 2 2
    
    >>> (2*) <$> p
    Point 2 2
    
    A major reason for this bespoke treatment (compared to just using linear, say) is that Points do not have maximums and minimums but they do form a lattice, and this is useful for folding sets of points to find out the (rectangular) Space they occupy.
    >>> Point 0 1 /\ Point 1 0
    Point 0 0
    
    >>> Point 0 1 \/ Point 1 0
    Point 1 1
    
    This is used extensively in chart-svg to ergonomically obtain chart areas.
    unsafeSpace1 [Point 1 0, Point 0 1] :: Rect Double
    
    Rect 0.0 1.0 0.0 1.0

  7. Point :: a -> a -> Point a

    numhask-space NumHask.Space.Point

    No documentation available.

  8. data PosDiscontinuous

    numhask-space NumHask.Space.Time

    whether to include lower and upper times

  9. PosIncludeBoundaries :: PosDiscontinuous

    numhask-space NumHask.Space.Time

    No documentation available.

  10. PosInnerOnly :: PosDiscontinuous

    numhask-space NumHask.Space.Time

    No documentation available.

Page 629 of many | Previous | Next