AK: Add StringView(ReadonlyBytes) constructor.

This commit is contained in:
asynts 2020-08-19 11:43:41 +02:00 committed by Andreas Kling
parent b1fc8d2b38
commit ebce4ead40

View file

@ -57,6 +57,11 @@ public:
, m_length(cstring ? __builtin_strlen(cstring) : 0)
{
}
ALWAYS_INLINE StringView(ReadonlyBytes bytes)
: m_characters(reinterpret_cast<const char*>(bytes.data()))
, m_length(bytes.size())
{
}
StringView(const ByteBuffer&);
StringView(const String&);