Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. RenderEnums :: Bool -> RenderEnums

    clash-lib Clash.Backend

    No documentation available.

  2. renderEnums :: Backend state => State state RenderEnums

    clash-lib Clash.Backend

    Whether -fclash-no-render-enums was set

  3. opt_renderEnums :: ClashOpts -> Bool

    clash-lib Clash.Driver.Types

    Render sum types with all zero-width fields as enums where supported, as opposed to rendering them as bitvectors.

  4. nonAtomicNumbers :: Ingredient

    code-conjure Conjure

    Disables the requirement of atomic numeric expressions when provided in the ingredient list of conjure or conjureFromSpec. (cf. maxConstantSize)

  5. conjureIsNumeric :: Conjurable f => f -> Expr -> Bool

    code-conjure Conjure.Conjurable

    No documentation available.

  6. enumFrom' :: Expr -> Expr

    code-conjure Conjure.Engine

    enumFrom lifted over Exprs.

    > enumFrom' zero
    enumFrom 0 :: [Int]
    
    Works for Ints, Bools and Chars.

  7. enumFromThen' :: Expr -> Expr -> Expr

    code-conjure Conjure.Engine

    enumFromThen lifted over Exprs

    > enumFromThen' zero ten
    enumFromThen 0 10 :: [Int]
    

  8. enumFromThenTo' :: Expr -> Expr -> Expr -> Expr

    code-conjure Conjure.Engine

    enumFromThenTo lifted over Exprs.

    > enumFromThenTo' zero two ten
    enumFromThenTo 0 2 10 :: [Int]
    

  9. enumFromTo' :: Expr -> Expr -> Expr

    code-conjure Conjure.Engine

    enumFromTo lifted over Exprs

    > enumFromTo' zero four
    enumFromTo 0 4 :: [Int]
    

  10. nonAtomicNumbers :: Ingredient

    code-conjure Conjure.Engine

    Disables the requirement of atomic numeric expressions when provided in the ingredient list of conjure or conjureFromSpec. (cf. maxConstantSize)

Page 453 of many | Previous | Next