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.
-
Tools for writing better type errors Please see the README on GitHub at https://github.com/isovector/type-errors#readme
-
type level tools Please see the README on GitHub at https://github.com/YoshikuniJujo/typelevel-tools-yj#readme
-
Access Unicode Character Database (UCD) unicode-data provides Haskell APIs to efficiently access the Unicode character database (UCD). Performance is the primary goal in the design of this package. The Haskell data structures are generated programmatically from the UCD files. The latest Unicode version supported by this library is 15.1.0.
-
Union type that include radian angle and degree angle Please see the README on GitHub at https://github.com/YoshikuniJujo/union-angle#readme
-
Universe instances for Some from some A class for finite and recursively enumerable types and some helper functions for enumerating them defined in universe-base package:
class Universe a where universe :: [a] class Universe a => Finite a where universeF :: [a]; universeF = universe
This package addsclass UniverseSome f where universeSome :: [Some f] class UniverseSome f => FiniteSome f where universeFSome :: [Some f]; universeFSome = universe
classes. -
Validity instances for aeson Validity instances for aeson
-
Validity instances for bytestring Please see README.md
-
Validity instances for scientific Validity instances for scientific
-
Efficient vector-based mutable hashtables implementation. This package provides efficient vector-based hashtable implementation similar to .NET Generic Dictionary implementation (at the time of 2015). See Data.Vector.Hashtables for documentation.
-
Types and parsers for software version numbers. A library for parsing and comparing software version numbers. We like to give version numbers to our software in a myriad of ways. Some ways follow strict guidelines for incrementing and comparison. Some follow conventional wisdom and are generally self-consistent. Some are just plain asinine. This library provides a means of parsing and comparing any style of versioning, be it a nice Semantic Version like this:
1.2.3-r1+git123
...or a monstrosity like this:2:10.2+0.0093r3+1-1
Please switch to Semantic Versioning if you aren't currently using it. It provides consistency in version incrementing and has the best constraints on comparisons. This library implements version 2.0.0 of the SemVer spec.