Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Basic file IO operations via 'OsPath' Basic file IO operations like Prelude, but for OsPath.
-
Library for manipulating RawFilePaths in a cross platform way. This package provides functionality for manipulating RawFilePath values. It can be used as a drop in replacement for the filepath library to get the benefits of using ByteStrings. It provides three modules:
- System.FilePath.Posix.ByteString manipulates POSIX/Linux style RawFilePath values (with / as the path separator).
- System.FilePath.Windows.ByteString manipulates Windows style RawFilePath values (with either \ or / as the path separator, and deals with drives).
- System.FilePath.ByteString is an alias for the module appropriate to your platform.
-
Class of filtrable containers See Data.Filtrable.
-
Signed 15.16 precision fixed point arithmetic Signed 15.16 precision fixed point arithmetic
-
Complete high-level binding to libFLAC Complete high-level binding to libFLAC.
-
Principled and efficient bit-oriented binary serialization. Reference implementation of flat, a principled and efficient binary serialization format.
-
Formatting of doubles. This package provides support for number formatting styles, especially styles involving significant figure calculations.
Usage
>>> import Data.FormatN >>> comma (Just 3) 1234 1,230
-
Freer par monad Please see the README on GitHub at https://github.com/YoshikuniJujo/freer-par-monad#readme
-
Tools for functor combinator-based program design Tools for working with functor combinators: types that take functors (or other indexed types) and returns a new functor that "enhances" or "mixes" them in some way. In the process, you can design featureful programs by composing smaller "primitives" using basic unversal combinators. The main entry point is Data.Functor.Combinators, but more fine-grained functionality and extra combinators (some of them re-implementations for compatibility) are available in other modules as well. This library does not define new functor combinators for the most part, but rather re-exports them from different parts of the Haskell ecosystem and provides a uniform interface. See the README for a quick overview, and also https://blog.jle.im/entry/functor-combinatorpedia.html for an in-depth dive into the motivation behind functor combinator-driven development, examples of the functor combinators in this library, and details about how to use these abstractions!
-
General functor products for various Foldable instances Generalizes the Rec type in vinyl to work over various different Foldable instances, instead of just lists. Provides a unifying abstraction for all of them, as well as data types to index into them.