diff --git a/AK/String.cpp b/AK/String.cpp index ed5b51a4f3..f8301e5bde 100644 --- a/AK/String.cpp +++ b/AK/String.cpp @@ -234,6 +234,7 @@ bool String::ends_with(char ch) const return false; return characters()[length() - 1] == ch; } + String String::repeated(char ch, size_t count) { if (!count) @@ -244,6 +245,17 @@ String String::repeated(char ch, size_t count) return *impl; } +String String::repeated(const StringView& string, size_t count) +{ + if (!count || string.is_empty()) + return empty(); + char* buffer; + auto impl = StringImpl::create_uninitialized(count * string.length(), buffer); + for (size_t i = 0; i < count; i++) + __builtin_memcpy(buffer + i * string.length(), string.characters_without_null_termination(), string.length()); + return *impl; +} + String String::bijective_base_from(size_t value, unsigned base, StringView map) { if (map.is_null()) diff --git a/AK/String.h b/AK/String.h index 9a9ed10678..56ef416200 100644 --- a/AK/String.h +++ b/AK/String.h @@ -92,6 +92,7 @@ public: String(const FlyString&); [[nodiscard]] static String repeated(char, size_t count); + [[nodiscard]] static String repeated(const StringView&, size_t count); [[nodiscard]] static String bijective_base_from(size_t value, unsigned base = 26, StringView map = {});