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.
RenderEnums :: Bool -> RenderEnumsclash-lib Clash.Backend No documentation available.
renderEnums :: Backend state => State state RenderEnumsclash-lib Clash.Backend Whether -fclash-no-render-enums was set
opt_renderEnums :: ClashOpts -> Boolclash-lib Clash.Driver.Types Render sum types with all zero-width fields as enums where supported, as opposed to rendering them as bitvectors.
nonAtomicNumbers :: Ingredientcode-conjure Conjure Disables the requirement of atomic numeric expressions when provided in the ingredient list of conjure or conjureFromSpec. (cf. maxConstantSize)
conjureIsNumeric :: Conjurable f => f -> Expr -> Boolcode-conjure Conjure.Conjurable No documentation available.
-
code-conjure Conjure.Engine > enumFrom' zero enumFrom 0 :: [Int]
Works for Ints, Bools and Chars. enumFromThen' :: Expr -> Expr -> Exprcode-conjure Conjure.Engine enumFromThen lifted over Exprs
> enumFromThen' zero ten enumFromThen 0 10 :: [Int]
enumFromThenTo' :: Expr -> Expr -> Expr -> Exprcode-conjure Conjure.Engine enumFromThenTo lifted over Exprs.
> enumFromThenTo' zero two ten enumFromThenTo 0 2 10 :: [Int]
enumFromTo' :: Expr -> Expr -> Exprcode-conjure Conjure.Engine enumFromTo lifted over Exprs
> enumFromTo' zero four enumFromTo 0 4 :: [Int]
nonAtomicNumbers :: Ingredientcode-conjure Conjure.Engine Disables the requirement of atomic numeric expressions when provided in the ingredient list of conjure or conjureFromSpec. (cf. maxConstantSize)