Hoogle Search
Within LTS Haskell 24.46 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
OutputMapCRtoLF :: TerminalModeposix-pty System.Posix.Pty OCRNL - (XSI) Map CR to NL on output
fieldMap :: Record rec => Map Text (SomeField rec)prairie Prairie.Class A mapping from Text record field labels to the corresponding SomeField for that record.
-
prairie Prairie.Fold Convert each field of a Record into a semigroup value and combine them together using (<>). As of 0.1.0.0, this function was relaxed from a Monoid constraint to a Semigroup constraint, allowing you to construct more types.
fromMap :: (Ord a, Num a) => Map a a -> Discrete aprobability-polynomial Numeric.Measure.Discrete Construct a discrete measure from a collection of points and their measures.
toMap :: Num a => Discrete a -> Map a aprobability-polynomial Numeric.Measure.Discrete Decompose the discrete measure into a collection of points and their measures.
-
purescript-bridge Language.PureScript.Bridge.Primitives No documentation available.
cmap :: (Element b, Container c e) => (e -> b) -> c e -> c bqchas QC like fmap (cannot implement instance Functor because of Element class constraint)
remap :: Element t => Matrix I -> Matrix I -> Matrix t -> Matrix tqchas QC Extract elements from positions given in matrices of rows and columns.
>>> r (3><3) [ 1, 1, 1 , 1, 2, 2 , 1, 2, 3 ] >>> c (3><3) [ 0, 1, 5 , 2, 2, 1 , 4, 4, 1 ] >>> m (4><6) [ 0, 1, 2, 3, 4, 5 , 6, 7, 8, 9, 10, 11 , 12, 13, 14, 15, 16, 17 , 18, 19, 20, 21, 22, 23 ]
>>> remap r c m (3><3) [ 6, 7, 11 , 8, 14, 13 , 10, 16, 19 ]
The indexes are autoconformable.>>> c' (3><1) [ 1 , 2 , 4 ] >>> remap r c' m (3><3) [ 7, 7, 7 , 8, 14, 14 , 10, 16, 22 ]
-
quickcheck-dynamic Test.QuickCheck.DynamicLogic No documentation available.
-
quickcheck-dynamic Test.QuickCheck.DynamicLogic.Internal Creates a Property from DynFormula with some specialised isomorphism for shrinking purpose.