A Glyph_string
is a vector-like container of Glyphs
. Most methods of
std::vector
are avaliable for Glyph_string
.
Traits and Colors can be used with the pipe operator to alter the Brush of each
Glyph in the Glyph_string
.
auto const foo = L"hello!" | Trait::Bold | bg(Color::Light_green);
foo | fg(Color::Violet);