Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Test 'wai' endpoints via Test.Tasty Helper functions and runners for testing wai endpoints using the Tasty testing infrastructure.
-
On-line accumulation of rank-based statistics A new data structure for accurate on-line accumulation of rank-based statistics such as quantiles and trimmed means. See original paper: "Computing extremely accurate quantiles using t-digest" by Ted Dunning and Otmar Ertl for more details https://github.com/tdunning/t-digest/blob/07b8f2ca2be8d0a9f04df2feadad5ddc1bb73c88/docs/t-digest-paper/histo.pdf.
-
Build safe and composable teardown sub-routines for resources The teardown library allows you to reliably execute cleanup sub-routines for allocated resources. When a program is initialized, it:
- Ensures that teardown sub-routines are executed exactly once
- Ensures that if errors occur on the execution of a Teardown sub-routine, the error does not propagate to others; bulkheading failure on cleanup.
- Requires every sub-routine to be documented at creation time; thus helping tracing your application structure.
- Allows tracing the teardown of your application, how is structured, how much time it takes to execute, and what component (if any) failed to finalize.
-
Portable terminal interaction library Please see the README on Github at https://github.com/lpeterse/haskell-terminal#readme
-
create temporary SSL certificates in tests Its functions generate the certificates as files in a temporary directory.
- Note: this package depends on HsOpenSSL.
- It expects the openssl system libraries to be available on your system, this is usually the case on most modern linux distributions.
-
Internals of "text-builder" Core functionality of "text-builder" with guts exposed for efficient custom integrations. Consider this to be what you'll find in the "Internal" modules of packages violating PVP. You'll find more on this in a blog post.
-
Converting time to and from ISO 8601 text. Converting time to and from IS0 8601 text. Specifically the RFC3339 profile.
-
Latin-1 (including ASCII) utility functions This package provides various functions over the ASCII ang Latin-1 portions of the Char and Word8 data types.
-
Case conversion, word boundary manipulation, and textual subjugation. Manipulate identifiers and structurally non-complex pieces of text by delimiting word boundaries via a combination of whitespace, control-characters, and case-sensitivity. Has support for common idioms like casing of programmatic variable names, taking, dropping, and splitting by word, and modifying the first character of a piece of text.
-
Abstract interface for text builders/printers. This package provides an interface for injecting text into monoids such as builders and printers.