AK: Add String::substring_view(size_t).

This commit is contained in:
asynts 2020-12-01 23:11:20 +01:00 committed by Andreas Kling
parent ac2358ff0d
commit 78eff163ea
2 changed files with 8 additions and 0 deletions

View file

@ -147,6 +147,13 @@ StringView String::substring_view(size_t start, size_t length) const
return { characters() + start, length };
}
StringView String::substring_view(size_t start) const
{
ASSERT(m_impl);
ASSERT(start <= length());
return { characters() + start, length() - start };
}
Vector<String> String::split(char separator, bool keep_empty) const
{
return split_limit(separator, 0, keep_empty);

View file

@ -138,6 +138,7 @@ public:
Vector<StringView> split_view(char separator, bool keep_empty = false) const;
StringView substring_view(size_t start, size_t length) const;
StringView substring_view(size_t start) const;
bool is_null() const { return !m_impl; }
ALWAYS_INLINE bool is_empty() const { return length() == 0; }