Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
GenValidity support for aeson GenValidity support for aeson
package
genvalidity-hspec-aeson Standard spec's for aeson-related instances Standard spec's for aeson-related instances
package
genvalidity-sydtest-aeson Standard spec's for aeson-related instances in sydtest Standard spec's for aeson-related instances in sydtest
-
Library and tool for parsing .eventlog files from GHC Parses .eventlog files emitted by GHC 8.0.2 and later. Includes the ghc-events tool permitting, in particular, to dump an event log file as text.
-
Programming with GHC parse trees Please see the README on GitHub at https://github.com/shayne-fletcher/ghc-lib-parser-ex#readme
package
ghc-syntax-highlighter Syntax highlighter for Haskell using the lexer of GHC Syntax highlighter for Haskell using the lexer of GHC.
-
DOM library that supports both GHCJS and GHC Documentent Object Model (DOM) functions that work with GHCJS, but can also be used with GHC and a Browser.
-
Haskell binding for Gremlin graph query language - core data types and tools Haskell binding for Gremlin graph query language. See README.md for detail. This package contains only core data types and tools used commonly by other related packages.
-
Pretty printing for well-behaved Show instances. Automatically derived Show instances are an easy way to inspect data in your program. However, for large data-structures, the resulting output lacks whitespace, making it unreadable. Groom offers an replacement to show called groom which attempts to pretty-print the output of show. For example:
let x = parseExp "foobar 1 [1,2]" in do putStrLn (show x) putStrLn (groom x)
results in:ParseOk (App (App (Var (UnQual (Ident "foobar"))) (Lit (Int 1))) (List [Lit (Int 1),Lit (Int 2)])) ParseOk (App (App (Var (UnQual (Ident "foobar"))) (Lit (Int 1))) (List [Lit (Int 1), Lit (Int 2)]))
Groom works only on Show instances that output valid Haskell code; if Groom can't understand its input, it will not make any changes. -
Memory allocation with added stress tests and integrity checks Provide adaptions of mallocForeignPtrArray and allocaArray that add stress tests and integrity checks. There are three modules:
- Guarded.Plain: exports the original allocation routines
- Guarded.Debug: exports allocation routines that add stress and checks
- Guarded: exports either Guarded.Plain or Guarded.Debug depending on the Cabal debug flag.