ltrim overloads
Synopses
Declared in <mrdocs/Support/String.hpp>
Return the substring without leading horizontal whitespace.
constexpr
std::string_view
ltrim(std::string_view const s) noexcept;
Return the substring without leading specified characters.
constexpr
std::string_view
ltrim(
std::string_view const s,
std::string_view const chars) noexcept;
Return Value
The modified string.
Parameters
Name |
Description |
s |
The string to trim. |
chars |
The characters to remove. |
Created with MrDocs