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.

  1. OutputMapCRtoLF :: TerminalMode

    posix-pty System.Posix.Pty

    OCRNL - (XSI) Map CR to NL on output

  2. fieldMap :: Record rec => Map Text (SomeField rec)

    prairie Prairie.Class

    A mapping from Text record field labels to the corresponding SomeField for that record.

  3. foldMapRecord :: (Record rec, Semigroup m) => (forall ty . () => ty -> Field rec ty -> m) -> rec -> m

    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.

  4. fromMap :: (Ord a, Num a) => Map a a -> Discrete a

    probability-polynomial Numeric.Measure.Discrete

    Construct a discrete measure from a collection of points and their measures.

  5. toMap :: Num a => Discrete a -> Map a a

    probability-polynomial Numeric.Measure.Discrete

    Decompose the discrete measure into a collection of points and their measures.

  6. strMapBridge :: BridgePart

    purescript-bridge Language.PureScript.Bridge.Primitives

    No documentation available.

  7. cmap :: (Element b, Container c e) => (e -> b) -> c e -> c b

    qchas QC

    like fmap (cannot implement instance Functor because of Element class constraint)

  8. remap :: Element t => Matrix I -> Matrix I -> Matrix t -> Matrix t

    qchas 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 ]
    

  9. forAllMappedDL :: (DynLogicModel s, Testable a) => (rep -> DynLogicTest s) -> (DynLogicTest s -> rep) -> (Actions s -> srep) -> DL s () -> (srep -> a) -> Property

    quickcheck-dynamic Test.QuickCheck.DynamicLogic

    No documentation available.

  10. forAllMappedScripts :: (DynLogicModel s, Testable a) => (rep -> DynLogicTest s) -> (DynLogicTest s -> rep) -> DynFormula s -> (Actions s -> a) -> Property

    quickcheck-dynamic Test.QuickCheck.DynamicLogic.Internal

    Creates a Property from DynFormula with some specialised isomorphism for shrinking purpose.

Page 1206 of many | Previous | Next