Hoogle Search

Within LTS Haskell 24.26 (ghc-9.10.3)

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

  1. throwErrnoIfMinus1Retry :: (Eq a, Num a) => String -> IO a -> IO a

    ghc-internal GHC.Internal.Foreign.C.Error

    Throw an IOError corresponding to the current value of getErrno if the IO action returns a result of -1, but retries in case of an interrupted operation.

  2. throwErrnoIfMinus1RetryMayBlock :: (Eq a, Num a) => String -> IO a -> IO b -> IO a

    ghc-internal GHC.Internal.Foreign.C.Error

    as throwErrnoIfMinus1Retry, but checks for operations that would block.

  3. throwErrnoIfMinus1RetryMayBlock_ :: (Eq a, Num a) => String -> IO a -> IO b -> IO ()

    ghc-internal GHC.Internal.Foreign.C.Error

    as throwErrnoIfMinus1RetryMayBlock, but discards the result.

  4. throwErrnoIfMinus1Retry_ :: (Eq a, Num a) => String -> IO a -> IO ()

    ghc-internal GHC.Internal.Foreign.C.Error

    as throwErrnoIfMinus1, but discards the result.

  5. throwErrnoIfMinus1_ :: (Eq a, Num a) => String -> IO a -> IO ()

    ghc-internal GHC.Internal.Foreign.C.Error

    as throwErrnoIfMinus1, but discards the result.

  6. throwErrnoPathIfMinus1 :: (Eq a, Num a) => String -> FilePath -> IO a -> IO a

    ghc-internal GHC.Internal.Foreign.C.Error

    as throwErrnoIfMinus1, but exceptions include the given path when appropriate.

  7. throwErrnoPathIfMinus1_ :: (Eq a, Num a) => String -> FilePath -> IO a -> IO ()

    ghc-internal GHC.Internal.Foreign.C.Error

    as throwErrnoIfMinus1_, but exceptions include the given path when appropriate.

  8. testingIfModifies :: forall (m :: Type -> Type) a b . Monad m => Focus a m b -> Focus a m (b, Bool)

    focus Focus

    Extends the output with a flag, signaling whether a change, which is not Leave, has been introduced.

  9. createDirectoryIfMissing :: FsRoot root => Bool -> Path root -> IO ()

    hackage-security Hackage.Security.Util.Path

    No documentation available.

  10. gifMain :: [(QDiagram Cairo V2 Double Any, GifDelay)] -> IO ()

    diagrams-cairo Diagrams.Backend.Cairo.CmdLine

    gifMain takes a list of diagram and delay time pairs and produces a command line program to generate an animated GIF, with options GifOpts. "Delay times are in 1/100ths of a second." Example usage:

    $ ghc --make GifTest
    [1 of 1] Compiling Main             ( GifTest.hs, GifTest.o )
    Linking GifTest ...
    ./GifTest --help
    GifTest
    
    Usage: GifTest [-w|--width WIDTH] [-h|--height HEIGHT] [-o|--output OUTPUT]
    [--dither] [--looping-off] [--loop-repeat ARG]
    Command-line diagram generation.
    
    Available options:
    -?,--help                Show this help text
    -w,--width WIDTH         Desired WIDTH of the output image
    -h,--height HEIGHT       Desired HEIGHT of the output image
    -o,--output OUTPUT       OUTPUT file
    --dither                 Turn on dithering.
    --looping-off            Turn looping off
    --loop-repeat ARG        Number of times to repeat
    

Page 17 of many | Previous | Next