Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
- hWithBufferMode :: Handle -> BufferMode -> IO a -> IO a
- hWithNoBuffering :: Handle -> IO a -> IO a
- withNoCursor :: IO a -> IO a
- withNoEcho :: IO a -> IO a
- clearFromCursorTo :: Int -> IO ()
Documentation
hWithBufferMode :: Handle -> BufferMode -> IO a -> IO a Source
Performs an IO action with some buffer mode on a handle
hWithNoBuffering :: Handle -> IO a -> IO a Source
Performs an IO action with NoBuffering on a handle
withNoCursor :: IO a -> IO a Source
Performs an IO action with the console cursor hidden
withNoEcho :: IO a -> IO a Source
Performs an IO action with console "echoing" supressed
clearFromCursorTo :: Int -> IO () Source
Clears the screen from the cursor's current position until n
lines
above it