Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. setCursorPosition :: Int -> Int -> IO ()

    ansi-terminal System.Console.ANSI

    Move the cursor to the specified position (row and column). The position is 0-based (that is, the top-left corner is at row 0 column 0).

  2. setCursorPositionCode :: Int -> Int -> String

    ansi-terminal System.Console.ANSI

    Code to move the cursor to the specified position (row and column). The position is 0-based (that is, the top-left corner is at row 0 column 0).

  3. setSGR :: [SGR] -> IO ()

    ansi-terminal System.Console.ANSI

    Set the Select Graphic Rendition mode

  4. setSGRCode :: [SGR] -> String

    ansi-terminal System.Console.ANSI

    No documentation available.

  5. setTitle :: String -> IO ()

    ansi-terminal System.Console.ANSI

    Set the terminal window title and icon name (that is, the text for the window in the Start bar, or similar).

  6. setTitleCode :: String -> String

    ansi-terminal System.Console.ANSI

    Code to set the terminal window title and the icon name (that is, the text for the window in the Start bar, or similar).

  7. setEnv :: String -> String -> IO ()

    base-compat System.Environment.Compat

    setEnv name value sets the specified environment variable to value. Early versions of this function operated under the mistaken belief that setting an environment variable to the empty string on Windows removes that environment variable from the environment. For the sake of compatibility, it adopted that behavior on POSIX. In particular

    setEnv name ""
    
    has the same effect as
    unsetEnv name
    
    If you'd like to be able to set environment variables to blank strings, use setEnv. Throws IOException if name is the empty string or contains an equals sign. Beware that this function must not be executed concurrently with getEnv, lookupEnv, getEnvironment and such. One thread reading environment variables at the same time with another one modifying them can result in a segfault, see Setenv is not Thread Safe for discussion.

  8. setGlobalManager :: Manager -> IO ()

    http-client-tls Network.HTTP.Client.TLS

    Set the current global Manager

  9. setAfterBind :: HasAfterBind a => (Socket -> IO ()) -> a -> a

    conduit-extra Data.Conduit.Network

    No documentation available.

  10. setHost :: ByteString -> ClientSettings -> ClientSettings

    conduit-extra Data.Conduit.Network

    No documentation available.

Page 157 of many | Previous | Next