mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 13:57:35 +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:
parent
b3f6b43d3c
commit
00b5614ce2
2 changed files with 65 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue