ltrim overloads
<mrdocs/Support/String.hpp>Return the substring without leading horizontal whitespace.
constexpr
std::string_view
ltrim(std::string_view const s) noexcept;
» more...
Return the substring without leading specified characters.
constexpr
std::string_view
ltrim(
    std::string_view const s,
    std::string_view const chars) noexcept;
» more...
| Name | Description | 
|---|---|
| s | The string to trim. | 
| chars | The characters to remove. |