Returns absl::string_view with whitespace stripped from the beginning of the given string_view.
Declared in <absl/strings/ascii.h>
[[nodiscard]]
std::string_view
StripLeadingAsciiWhitespace(std::string_view str);
A view of str without leading whitespace.
The return value should not be discarded.
| Name | Description |
|---|---|
| str | The characters to strip leading whitespace from. |