append overloads
Declared in <util/fs.h>
Deleted to forbid appending a std::string, which decodes locale-dependently on Windows.
path&
append(std::string s) = delete;
» more...
Append a C string literal without inserting a directory separator.
path&
append(char const* c);
» more...
template<class _Source>
[[__visibility__, __exclude_from_explicit_instantiation__, __abi_tag__]]
path&
append(_Source const& __src);
» more...
template<class _InputIt>
[[__visibility__, __exclude_from_explicit_instantiation__, __abi_tag__]]
path&
append(
_InputIt __first,
_InputIt __last);
» more...
A reference to this object.
| Name | Description |
|---|---|
| s | The string that would be appended. |
| c | The null-terminated string to append. |