Hoogle Search
Within LTS Haskell 24.57 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
A single-entity stateful Map in STM, similar to tmapchan Please see the README on Github at https://git.localcooking.com/tooling/tmapmvar#readme
-
Launch a PostgreSQL database in docker using tmp-proc Demos how to use tmp-proc to run a PostgreSQL database in docker in a unittest.
-
Launch RabbitMQ in docker using tmp-proc Demos how to use tmp-proc to run RabbitMQ in docker in a unittest.
-
Simple tokenizer for English text Simple tokenizer for English text.
-
Alternative parser for TOML values produced by the toml-reader package. Package defines a set of parser combinators that allows analyzing arbitrary TOML structures. Includes formatted errors that keep track of where in the original TOML file a value came from.
-
Bidirectional TOML serialization Implementation of bidirectional TOML serialization. Simple codecs look like this:
data User = User { userName :: Text , userAge :: Int } userCodec :: TomlCodec User userCodec = User <$> Toml.text "name" .= userName <*> Toml.int "age" .= userAgeThe following blog post has more details about library design: -
Tribial tools Please see the README on GitHub at https://github.com/YoshikuniJujo/tools-yj#readme
-
Template-to-Haskell preprocessor, and templating language Please see README.md
-
Directed acyclic graphs. Directed acyclic graphs can be sorted topographically. Existence of topographic ordering allows writing many graph algorithms efficiently. And many graphs, e.g. most dependency graphs are acyclic! There are some algorithms built-in: dfs, transpose, transitive closure, transitive reduction... Some algorithms even become not-so-hard to implement, like a longest path!
-
Torsor Typeclass Torsor Typeclass.