Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 507 Bytes

glyph-string.md

File metadata and controls

20 lines (14 loc) · 507 Bytes

Glyph String

A Glyph_string is a vector-like container of Glyphs. Most methods of std::vector are avaliable for Glyph_string.

Pipe Operator

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);

See Also