BAN: Add value_type to String{,View}

This commit is contained in:
2026-02-23 16:06:48 +02:00
parent 1fc2e43881
commit a5cdf0640f
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ namespace BAN
{
public:
using size_type = size_t;
using value_type = char;
using iterator = IteratorSimple<char, String>;
using const_iterator = ConstIteratorSimple<char, String>;
static constexpr size_type sso_capacity = 15;
+1
View File
@@ -14,6 +14,7 @@ namespace BAN
{
public:
using size_type = size_t;
using value_type = char;
using const_iterator = ConstIteratorSimple<char, StringView>;
public: