2022-12-13 20:41:32 +02:00
|
|
|
#include <BAN/String.h>
|
|
|
|
#include <BAN/StringView.h>
|
|
|
|
|
|
|
|
namespace BAN
|
|
|
|
{
|
|
|
|
|
|
|
|
StringView::StringView(const String& other)
|
2023-02-01 21:05:44 +02:00
|
|
|
: StringView(other.data(), other.size())
|
2022-12-13 20:41:32 +02:00
|
|
|
{ }
|
|
|
|
|
2024-01-24 14:43:46 +02:00
|
|
|
}
|