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.
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).
setCursorPositionCode :: Int -> Int -> Stringansi-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).
-
ansi-terminal System.Console.ANSI Set the Select Graphic Rendition mode
-
ansi-terminal System.Console.ANSI No documentation available.
-
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).
setTitleCode :: String -> Stringansi-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).
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 asunsetEnv 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.setGlobalManager :: Manager -> IO ()http-client-tls Network.HTTP.Client.TLS Set the current global Manager
setAfterBind :: HasAfterBind a => (Socket -> IO ()) -> a -> aconduit-extra Data.Conduit.Network No documentation available.
setHost :: ByteString -> ClientSettings -> ClientSettingsconduit-extra Data.Conduit.Network No documentation available.