Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. identity' :: Pi Columns String

    relational-schemas Database.Relational.Schema.IBMDB2.Columns

    No documentation available.

  2. idftP :: (Shape sh, Monad m) => Array U (sh :. Int) Complex -> m (Array U (sh :. Int) Complex)

    repa-algorithms Data.Array.Repa.Algorithms.DFT

    Compute the inverse DFT along the low order dimension of an array.

  3. idleTimeout :: State sto -> !Maybe NominalDiffTime

    serversession Web.ServerSession.Core.Internal

    No documentation available.

  4. idleTimeout :: RedisStorage sess -> Maybe NominalDiffTime

    serversession-backend-redis Web.ServerSession.Backend.Redis

    How long should a session live after last access

  5. idleTimeout :: RedisStorage sess -> Maybe NominalDiffTime

    serversession-backend-redis Web.ServerSession.Backend.Redis.Internal

    How long should a session live after last access

  6. identity :: a -> a

    verset Verset

    The identity function, returns the give value unchanged.

  7. idFadeHook :: FadeHook

    xmonad-contrib XMonad.Hooks.FadeWindows

    The identity FadeHook, which renders windows opaque.

  8. class Semigroup a => Monoid a

    base Prelude

    The class of monoids (types with an associative binary operation that has an identity). Instances should satisfy the following:

    You can alternatively define mconcat instead of mempty, in which case the laws are: The method names refer to the monoid of lists under concatenation, but there are many other instances. Some types can be viewed as a monoid in more than one way, e.g. both addition and multiplication on numbers. In such cases we often define newtypes and make those instances of Monoid, e.g. Sum and Product. NOTE: Semigroup is a superclass of Monoid since base-4.11.0.0.

  9. void :: Functor f => f a -> f ()

    base Control.Monad

    void value discards or ignores the result of evaluation, such as the return value of an IO action.

    Examples

    Replace the contents of a Maybe Int with unit:
    >>> void Nothing
    Nothing
    
    >>> void (Just 3)
    Just ()
    
    Replace the contents of an Either Int Int with unit, resulting in an Either Int ():
    >>> void (Left 8675309)
    Left 8675309
    
    >>> void (Right 8675309)
    Right ()
    
    Replace every element of a list with unit:
    >>> void [1,2,3]
    [(),(),()]
    
    Replace the second element of a pair with unit:
    >>> void (1,2)
    (1,())
    
    Discard the result of an IO action:
    >>> mapM print [1,2]
    1
    2
    [(),()]
    
    >>> void $ mapM print [1,2]
    1
    2
    

  10. data ThreadId

    base Control.Concurrent

    A ThreadId is an abstract type representing a handle to a thread. ThreadId is an instance of Eq, Ord and Show, where the Ord instance implements an arbitrary total ordering over ThreadIds. The Show instance lets you convert an arbitrary-valued ThreadId to string form; showing a ThreadId value is occasionally useful when debugging or diagnosing the behaviour of a concurrent program. Note: in GHC, if you have a ThreadId, you essentially have a pointer to the thread itself. This means the thread itself can't be garbage collected until you drop the ThreadId. This misfeature would be difficult to correct while continuing to support threadStatus.

Page 357 of many | Previous | Next