Write to output
Synopses
Declared in <mrdocs/Support/Handlebars.hpp>
Write to output
template<class T>
requires std::formattable<T, char>
OutputRef&
operator<<(
OutputRef& os,
T v);
Write to output
OutputRef&
operator<<(
OutputRef& os,
char const* c);
Write to output
OutputRef&
operator<<(
OutputRef& os,
char c);
Write to output
OutputRef&
operator<<(
OutputRef& os,
std::string_view sv);
Return Value
A reference to this object
Parameters
Name |
Description |
os |
The output stream reference |
v |
The character to write |
c |
The string to write |
sv |
The string to write |
Created with MrDocs