QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::console_colours Namespace Reference

Namespaces

namespace  detail
 

Functions

std::ostream & red (std::ostream &s)
 Makes the text on the console red.
 
std::ostream & green (std::ostream &s)
 Makes the text on the console green.
 
std::ostream & blue (std::ostream &s)
 Makes the text on the console blue.
 
std::ostream & yellow (std::ostream &s)
 Makes the text on the console yellow.
 
std::ostream & magenta (std::ostream &s)
 Makes the text on the console magenta.
 
std::ostream & cyan (std::ostream &s)
 Makes the text on the console cyan.
 
std::ostream & white (std::ostream &s)
 Makes the text on the console white.
 
std::ostream & bold (std::ostream &s)
 Makes the text on the console bold.
 
std::ostream & normal (std::ostream &s)
 Makes the text on the console non-bold and white.
 

Function Documentation

◆ red()

std::ostream & quickcpplib::_xxx::console_colours::red ( std::ostream &  s)
inline

Makes the text on the console red.

139{ return detail::color_if_term(s, detail::red); }

◆ green()

std::ostream & quickcpplib::_xxx::console_colours::green ( std::ostream &  s)
inline

Makes the text on the console green.

141{ return detail::color_if_term(s, detail::green); }

◆ blue()

std::ostream & quickcpplib::_xxx::console_colours::blue ( std::ostream &  s)
inline

Makes the text on the console blue.

143{ return detail::color_if_term(s, detail::blue); }

◆ yellow()

std::ostream & quickcpplib::_xxx::console_colours::yellow ( std::ostream &  s)
inline

Makes the text on the console yellow.

145{ return detail::color_if_term(s, detail::yellow); }

◆ magenta()

std::ostream & quickcpplib::_xxx::console_colours::magenta ( std::ostream &  s)
inline

Makes the text on the console magenta.

147{ return detail::color_if_term(s, detail::magenta); }

◆ cyan()

std::ostream & quickcpplib::_xxx::console_colours::cyan ( std::ostream &  s)
inline

Makes the text on the console cyan.

149{ return detail::color_if_term(s, detail::cyan); }

◆ white()

std::ostream & quickcpplib::_xxx::console_colours::white ( std::ostream &  s)
inline

Makes the text on the console white.

151{ return detail::color_if_term(s, detail::white); }

◆ bold()

std::ostream & quickcpplib::_xxx::console_colours::bold ( std::ostream &  s)
inline

Makes the text on the console bold.

153{ return detail::color_if_term(s, detail::bold); }

◆ normal()

std::ostream & quickcpplib::_xxx::console_colours::normal ( std::ostream &  s)
inline

Makes the text on the console non-bold and white.

155{ return detail::color_if_term(s, detail::normal); }