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.

  1. Identity :: a -> Identity a

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  2. module Text.XML.HXT.DTDValidation.IdValidation

    This module provides functions for checking special IDIDREFIDREFS constraints. Checking special ID/IDREF/IDREFS constraints means:

    • checking that all ID values are unique.
    • checking that all IDREF/IDREFS values match the value of some ID attribute
    ID-Validation should be started before or after validating the document. First all nodes with ID attributes are collected from the document, then it is validated that values of ID attributes do not occure more than once. During a second iteration over the document it is validated that there exists an ID attribute value for IDREF/IDREFS attribute values.

  3. data IdentityT (f :: k -> Type) (a :: k)

    relude Relude.Monad.Reexport

    The trivial monad transformer, which maps a monad to an equivalent monad.

  4. newtype Identity a

    vinyl Data.Vinyl.Functor

    This is identical to the Identity from Data.Functor.Identity in "base" except for its Show instance.

  5. Identity :: a -> Identity a

    vinyl Data.Vinyl.Functor

    No documentation available.

  6. data Identifier

    distributed-process Control.Distributed.Process.Internal.Types

    Union of all kinds of identifiers

  7. data IdGenerator

    hs-opentelemetry-api OpenTelemetry.Trace.Id.Generator

    An interface for generating the underlying bytes for trace and span ids.

  8. IdGenerator :: IO ByteString -> IO ByteString -> IdGenerator

    hs-opentelemetry-api OpenTelemetry.Trace.Id.Generator

    No documentation available.

  9. data IDecode s a

    serialise Codec.Serialise

    An Incremental decoder, used to represent the result of attempting to run a decoder over a given input, and return a value of type a.

  10. newtype Identity a

    streaming Streaming

    Identity functor and monad. (a non-strict monad)

    Examples

    >>> fmap (+1) (Identity 0)
    Identity 1
    
    >>> Identity [1, 2, 3] <> Identity [4, 5, 6]
    Identity [1,2,3,4,5,6]
    
    >>> do
    x <- Identity 10
    y <- Identity (x + 5)
    pure (x + y)
    Identity 25
    

Page 186 of many | Previous | Next