1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:27:45 +00:00

AK: Add a very basic Utf32View class

This allows you to wrap a { const u32* codepoints, size_t length } in a
simple object.
This commit is contained in:
Andreas Kling 2020-05-17 20:01:45 +02:00
parent b3f6b43d3c
commit 00b5614ce2
2 changed files with 65 additions and 1 deletions

View file

@ -46,6 +46,7 @@ class StringImpl;
class StringView;
class URL;
class FlyString;
class Utf32View;
class Utf8View;
template<typename T>
@ -116,6 +117,7 @@ using AK::CircularQueue;
using AK::DebugLogStream;
using AK::DoublyLinkedList;
using AK::FixedArray;
using AK::FlyString;
using AK::Function;
using AK::HashMap;
using AK::HashTable;
@ -138,6 +140,6 @@ using AK::StringImpl;
using AK::StringView;
using AK::Traits;
using AK::URL;
using AK::FlyString;
using AK::Utf32View;
using AK::Utf8View;
using AK::Vector;