Hoogle Search

Within LTS Haskell 24.27 (ghc-9.10.3)

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

  1. id :: forall (a :: k) . Category cat => cat a a

    foundation Foundation

    the identity morphism

  2. id :: a -> a

    prelude-compat Prelude2010

    Identity function.

    id x = x
    
    This function might seem useless at first glance, but it can be very useful in a higher order context.

    Examples

    >>> length $ filter id [True, True, False, True]
    3
    
    >>> Just (Just 3) >>= id
    Just 3
    
    >>> foldr id 0 [(^3), (*5), (+2)]
    1000
    

  3. id :: T a a

    synthesizer-core Synthesizer.Causal.Process

    No documentation available.

  4. id :: a -> a

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    Identity function.

    id x = x
    
    This function might seem useless at first glance, but it can be very useful in a higher order context.

    Examples

    >>> length $ filter id [True, True, False, True]
    3
    
    >>> Just (Just 3) >>= id
    Just 3
    
    >>> foldr id 0 [(^3), (*5), (+2)]
    1000
    

  5. id :: forall (arrow :: Type -> Type -> Type) sample . Category arrow => T arrow sample sample

    synthesizer-dimensional Synthesizer.Dimensional.Arrow

    No documentation available.

  6. id :: T s sample sample

    synthesizer-dimensional Synthesizer.Dimensional.Causal.Process

    No documentation available.

  7. id :: forall (arrow :: Type -> Type -> Type) sample . Category arrow => T arrow sample sample

    synthesizer-dimensional Synthesizer.Dimensional.Map

    No documentation available.

  8. id :: a -> a

    LambdaHack Game.LambdaHack.Core.Prelude

    Identity function.

    id x = x
    
    This function might seem useless at first glance, but it can be very useful in a higher order context.

    Examples

    >>> length $ filter id [True, True, False, True]
    3
    
    >>> Just (Just 3) >>= id
    Just 3
    
    >>> foldr id 0 [(^3), (*5), (+2)]
    1000
    

  9. id :: a -> a

    cabal-install-solver Distribution.Solver.Compat.Prelude

    Identity function.

    id x = x
    
    This function might seem useless at first glance, but it can be very useful in a higher order context.

    Examples

    >>> length $ filter id [True, True, False, True]
    3
    
    >>> Just (Just 3) >>= id
    Just 3
    
    >>> foldr id 0 [(^3), (*5), (+2)]
    1000
    

  10. id :: a -> a

    clash-prelude Clash.HaskellPrelude

    Identity function.

    id x = x
    
    This function might seem useless at first glance, but it can be very useful in a higher order context.

    Examples

    >>> length $ filter id [True, True, False, True]
    3
    
    >>> Just (Just 3) >>= id
    Just 3
    
    >>> foldr id 0 [(^3), (*5), (+2)]
    1000
    

Page 13 of many | Previous | Next