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.
-
Open Union and Open Product Types Please see README.md.
-
A fast event-based XML parser in pure Haskell A fast, low-memory use, event-based XML parser in pure Haskell.
-
An XHTML combinator library This package provides combinators for producing XHTML 1.0, including the Strict, Transitional and Frameset variants.
-
Simple and incomplete Excel file parser/writer This library can help you to get some data read and written in Office Open XML xlsx format. Small subset of xlsx format is supported. For examples look into Codec.Xlsx. Format is covered by ECMA-376 standard: https://ecma-international.org/publications-and-standards/standards/ecma-376/ 4th edition of the standard with the transitional schema is used for this library.
-
Basics for XML/HTML representation and processing We provide basic data types for XML representation, like names, attributes, entities. Yes we try hard to get type safe XML handling out of Haskell 98. We also provide information about exceptional HTML tags, like self-closing tags. This package provides common functionality that is both needed in list (tagchup) and tree (wraxml) representations of XML.
-
Fast XML generation library Library for high-performance XML generation.
-
sanitize untrusted HTML to prevent XSS attacks run untrusted HTML through Text.HTML.SanitizeXSS.sanitizeXSS to prevent XSS attacks. see README.md http://github.com/yesodweb/haskell-xss-sanitize for more details
-
Bindings to ZeroMQ 4.x The 0MQ lightweight messaging kernel is a library which extends the standard socket interfaces with features traditionally provided by specialised messaging middleware products. 0MQ sockets provide an abstraction of asynchronous message queues, multiple messaging patterns, message filtering (subscriptions), seamless access to multiple transport protocols and more. This library provides the Haskell language binding to 0MQ >= 4.x
-
utilities for DP Small set of utility functions, as well as the base types for generic backtracing.
-
A 'FailT' monad transformer that plays well with 'MonadFail' Fail gracefully when stuck in a MonadFail
>>> runFailT (fail "Failure!?" >> pure "Success!!") Left "Failure!?" >>> runFailT (fail "Failure!?" <|> pure "Success!!") Right "Success!!" >>> runFailT (pure ["Success!!"] <> fail "Failure!?" <> pure ["At", "Last!"]) Right ["Success!!","At","Last!"]