Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. cursorForwardCode :: Int -> String

    ansi-terminal System.Console.ANSI

    No documentation available.

  2. hCursorForward :: Handle -> Int -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  3. onceFork :: IO a -> IO (IO a)

    extra Control.Concurrent.Extra

    Like once, but immediately starts running the computation on a background thread.

    \(x :: IO Int) -> join (onceFork x) == x
    \(x :: IO Int) -> (do a <- onceFork x; a; a) == x
    

  4. concatForM :: Monad m => [a] -> (a -> m [b]) -> m [b]

    extra Control.Monad.Extra

    Like concatMapM, but has its arguments flipped, so can be used instead of the common fmap concat $ forM pattern.

  5. concatForM :: Monad m => [a] -> (a -> m [b]) -> m [b]

    extra Extra

    Like concatMapM, but has its arguments flipped, so can be used instead of the common fmap concat $ forM pattern.

  6. onceFork :: IO a -> IO (IO a)

    extra Extra

    Like once, but immediately starts running the computation on a background thread.

    \(x :: IO Int) -> join (onceFork x) == x
    \(x :: IO Int) -> (do a <- onceFork x; a; a) == x
    

  7. bifor1_ :: (Bifoldable1 t, Apply f) => t a c -> (a -> f b) -> (c -> f d) -> f ()

    semigroupoids Data.Semigroup.Bifoldable

    No documentation available.

  8. plusForeignPtr :: ForeignPtr a -> Int -> ForeignPtr b

    base-compat Foreign.ForeignPtr.Compat

    Advances the given address by the given offset in bytes. The new ForeignPtr shares the finalizer of the original, equivalent from a finalization standpoint to just creating another reference to the original. That is, the finalizer will not be called before the new ForeignPtr is unreachable, nor will it be called an additional time due to this call, and the finalizer will be called with the same address that it would have had this call not happened, *not* the new address.

  9. addForeignPtrFinalizer :: FinalizerPtr a -> ForeignPtr a -> IO ()

    base-compat Foreign.ForeignPtr.Safe.Compat

    This function adds a finalizer to the given foreign object. The finalizer will run before all other finalizers for the same object which have already been registered.

  10. addForeignPtrFinalizerEnv :: FinalizerEnvPtr env a -> Ptr env -> ForeignPtr a -> IO ()

    base-compat Foreign.ForeignPtr.Safe.Compat

    Like addForeignPtrFinalizer but the finalizer is passed an additional environment parameter.

Page 427 of many | Previous | Next