Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

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

  1. showPrecExpr :: Int -> Expr -> String

    code-conjure Conjure.Expr

    O(n). Like showExpr but allows specifying the surrounding precedence.

    > showPrecExpr 6 (one -+- two)
    "1 + 2"
    
    > showPrecExpr 7 (one -+- two)
    "(1 + 2)"
    

  2. showCandidates :: Ingredient

    code-conjure Conjure.Settings

    (Debug option) When provided in the ingredients list, this enables showing enumerated candidates.

    conjure ... ... [ ...
    , showCandidates
    , ... ]
    
    Warning: activating this will likely produce a humongous wall-of-text.

  3. showCandidatesI :: [Ingredient] -> Bool

    code-conjure Conjure.Settings

    No documentation available.

  4. showDeconstructions :: Ingredient

    code-conjure Conjure.Settings

    (Debug option) Makes conjure print enumerated deconstructions when provided in its ingredient list.

  5. showDeconstructionsI :: [Ingredient] -> Bool

    code-conjure Conjure.Settings

    No documentation available.

  6. showPatterns :: Ingredient

    code-conjure Conjure.Settings

    (Debug option) When this option is provided in the ingredients list, conjure will print the enumrated LHS patterns. (cf. maxPatternSize, maxPatternDepth)

  7. showPatternsI :: [Ingredient] -> Bool

    code-conjure Conjure.Settings

    No documentation available.

  8. showTests :: Ingredient

    code-conjure Conjure.Settings

    (Debug option) When provided in the ingredients list, conjure will print the tests reified from the partial definition. (cf. maxTests, maxSearchTests)

  9. showTestsI :: [Ingredient] -> Bool

    code-conjure Conjure.Settings

    No documentation available.

  10. showTheory :: Ingredient

    code-conjure Conjure.Settings

    (Debug option). Shows the underlying theory used in pruning when this is provided in the ingredient list.

Page 139 of many | Previous | Next