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.
identity' :: Pi Columns Stringrelational-schemas Database.Relational.Schema.IBMDB2.Columns No documentation available.
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.
idleTimeout :: State sto -> !Maybe NominalDiffTimeserversession Web.ServerSession.Core.Internal No documentation available.
idleTimeout :: RedisStorage sess -> Maybe NominalDiffTimeserversession-backend-redis Web.ServerSession.Backend.Redis How long should a session live after last access
idleTimeout :: RedisStorage sess -> Maybe NominalDiffTimeserversession-backend-redis Web.ServerSession.Backend.Redis.Internal How long should a session live after last access
-
verset Verset The identity function, returns the give value unchanged.
-
xmonad-contrib XMonad.Hooks.FadeWindows -
base Prelude The class of monoids (types with an associative binary operation that has an identity). Instances should satisfy the following:
- Right identity x <> mempty = x
- Left identity mempty <> x = x
- Associativity x <> (y <> z) = (x <> y) <> z (Semigroup law)
- Concatenation mconcat = foldr (<>) mempty
- Unit mconcat (pure x) = x
- Multiplication mconcat (join xss) = mconcat (fmap mconcat xss)
- Subclass mconcat (toList xs) = sconcat xs
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
-
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.