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.
-
SVG renderer based on Rasterific. SVG renderer that will let you render svg-tree parsed SVG file to a JuicyPixel image or Rasterific Drawing.
-
Forward build system, with caching and speculation A forward build system like Fabrciate but with speculation and remote caching.
-
Parse and generate Rocket League replays. Warning: This package is not maintained anymore. Rattletrap parses and generates Rocket League replays.
-
Use RawFilePath instead of FilePath A fast and safe API with high-level features on RawFilePath, instead of FilePath, to avoid the encoding issues or performance penalties. Please see README.md
-
Read-Copy-Update for Haskell Read-Copy-Update for Haskell.
-
Representation and Incremental Processing of RDF Data Data structures, parsers, and encoders for RDF data sets based on the RDF 1.1 abstract syntax and RFC 3987. The interface is intended to support incremental graph processing in constant space.
-
Bindings to the re2 regular expression library re2 is a regular expression library offering predictable run-time and memory consumption. This package is a binding to re2. Supported expression syntax is documented at https://github.com/google/re2/
$ ghci -XOverloadedStrings ghci> import Regex.RE2 ghci> find "\\w+" "hello world" Just (Match [Just "hello"]) ghci> find "\\w+$" "hello world" Just (Match [Just "world"]) ghci> find "^\\w+$" "hello world" Nothing
-
Opens a temporary file on the system's EDITOR and returns the resulting edits See https://github.com/yamadapc/haskell-read-editor for more information
-
Functions for safely reading environment variables. Please see README.md
-
Reading from Text and ByteString Provides a Readable type class for reading data types from ByteString and Text. Also includes efficient implementations for common data types.