Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Extremely simple typeclass Extremely simple typeclass
-
A class for finite and recursively enumerable types. A class for finite and recursively enumerable types and some helper functions for enumerating them
class Universe a where universe :: [a] class Universe a => Finite a where universeF :: [a]; universeF = universe
This also provides instances from @universe-instances-*" packages. package
universe-dependent-sum Universe instances for types from dependent-sum 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.-
Unix/Posix-specific functions for ByteStrings. Unix/Posix-specific functions for ByteStrings. Provides ByteString file-descriptor based I/O API, designed loosely after the String file-descriptor based I/O API in System.Posix.IO. The functions here wrap standard C implementations of the functions specified by the ISO/IEC 9945-1:1990 (``POSIX.1'') and X/Open Portability Guide Issue 4, Version 2 (``XPG4.2'') specifications. Note that this package doesn't require the unix package as a dependency. But you'll need it in order to get your hands on an Fd, so we're not offering a complete replacement.
-
Generalization of io-streams to MonadUnliftIO Generalization of io-streams to MonadUnliftIO.
-
A library for working with URLs. A library for working with URLs.
-
Painfully simple URL deployment. Please see the README on Github at https://github.com/athanclark/urlpath#readme
-
Library to test backends for the users library Provides HSpec helpers for backends of users package. All backend packages should conform to this specification.
-
Validity instances for primitive Validity instances for primitive
-
A buffer compatible with Data.Vector.* A buffer type that can easily be converted to a Data.Vector.Storable vector from the vector package and compatible with hmatrix. Elements are pushed into the buffer. When the buffer is converted to a read-only vector, the last-pushed element occurs at the end. Monadic map functions also operate so that the last-pushed element is treated last.