Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. newtype Identity a

    vinyl Data.Vinyl.Functor

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

  2. Identity :: a -> Identity a

    vinyl Data.Vinyl.Functor

    No documentation available.

  3. data Identifier

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

    Union of all kinds of identifiers

  4. 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.

  5. 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
    

  6. Identity :: a -> Identity a

    streaming Streaming

    No documentation available.

  7. module Basement.Compat.Identity

    Identity re-export, with a compat wrapper for older version of base that do not have Data.Functor.Identity

  8. newtype Identity a

    basement Basement.Compat.Identity

    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
    

  9. Identity :: a -> Identity a

    basement Basement.Compat.Identity

    No documentation available.

  10. class (Additive a, Multiplicative a) => IDivisible a

    basement Basement.Numerical.Multiplicative

    Represent types that supports an euclidian division

    (x ‘div‘ y) * y + (x ‘mod‘ y) == x
    

Page 186 of many | Previous | Next