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.
-
cql-io Database.CQL.IO No documentation available.
-
epub-metadata Codec.Epub.Data.Metadata package/metadata/dc:identifier tag
Identifier :: Maybe String -> Maybe String -> Maybe String -> String -> Identifierepub-metadata Codec.Epub.Data.Metadata No documentation available.
class
Idempotent (c :: k1 -> k1 -> k)gdp Logic.Classes A binary operation # is idempotent if x # x == x for all x. The Idempotent c typeclass provides a single method, idempotent :: Proof (c p p == p). Within the module where F is defined, you can declare F to be idempotent with an empty instance:
-- Define an idempotent binary operation data Union x y instance Idempotent Union
data
IdSurgery (a :: k -> Type) (b :: k -> Type)generic-data-surgery Generic.Data.Surgery The identity surgery: doesn't do anything.
data
IdSurgery (a :: k -> Type) (b :: k -> Type)generic-data-surgery Generic.Data.Surgery.Internal The identity surgery: doesn't do anything.
-
gitlab-haskell GitLab.Types identity
Identity :: Text -> Text -> Maybe Int -> Identitygitlab-haskell GitLab.Types No documentation available.
-
A version of GraphulaT that removes all inserted data afterward
-
grisette Grisette.Core Identifier type used for GenSym The constructor is hidden intentionally. You can construct an identifier by:
- a raw identifier
>>> identifier "a" a
>>> "a" :: Identifier -- available when OverloadedStrings is enabled a
- bundle the identifier with some user provided metadata
>>> withMetadata "a" (NumberAtom 1) a:1
- bundle the calling file location with the identifier to ensure global uniqueness
>>> $$(withLocation "a") -- a sample result could be "a:[grisette-file-location <interactive> 18 (4 18)]" a:[grisette-file-location <interactive>...]