safe-coloured-text-terminfo-0.0.0.0: Safely output coloured text
Safe HaskellNone
LanguageHaskell2010

Text.Colour.Term

Synopsis

Documentation

putChunks :: [Chunk] -> IO () Source #

Print a list of chunks to stdout.

This function will use getTerminalCapabilitiesHandle on stdout. If you intend to use this function more than once, it is more efficient to use getTerminalCapabilitiesFromEnv first and then use putChunksWith.

hPutChunks :: Handle -> [Chunk] -> IO () Source #

Print a list of chunks to the given Handle

This function will use getTerminalCapabilitiesHandle on the given handle. If you intend to use this function more than once, it is more efficient to use getTerminalCapabilitiesHandle first and then use hPutChunksWith.