mrdocs::OutputRef::OutputRef
Constructors
Synopses
Declared in <mrdocs/Support/Handlebars.hpp>
Constructor for std::ostream& output
template</* implementation-defined */ Os>
requires std::is_convertible_v<Os*, std::ostream*> &&
(!detail::StdLHROStreamable<Os>)
OutputRef(Os& os);
Constructor for llvm::raw_string_ostream output
template</* implementation-defined */ Os>
requires std::is_convertible_v<Os*, std::ostream*>
OutputRef(Os& os);
Constructor for std::string output
template</* implementation-defined */ St>
requires std::same_as<typename St::value_type, char>
OutputRef(St& st);
Parameters
| Name | Description |
|---|---|
os |
The output stream to write to |
st |
The string to append to |
Created with MrDocs