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.
module Database.MySQL.Simple.
Param The Param typeclass, for rendering a parameter to a SQL query.
-
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).
-
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 "'".
-
numhask-space NumHask.Space Pos suggests where points should be placed in forming a grid across a field space.
-
A 2-dimensional point.
-
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 -
numhask-space NumHask.Space.Point No documentation available.
-
numhask-space NumHask.Space.Time whether to include lower and upper times
PosIncludeBoundaries :: PosDiscontinuousnumhask-space NumHask.Space.Time No documentation available.
PosInnerOnly :: PosDiscontinuousnumhask-space NumHask.Space.Time No documentation available.