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

AK: Add DeprecatedStringCodePointIterator

This is a safe iterator over the underlying code points. It will be used
in Jakt to assist in the migration away from DeprecatedString.
This commit is contained in:
Andreas Kling 2023-01-27 16:26:57 +01:00
parent 0f4bbfdfb7
commit 2dc657c77e
4 changed files with 33 additions and 0 deletions

View file

@ -30,6 +30,7 @@ class JsonValue;
class StackInfo;
class DeprecatedFlyString;
class DeprecatedString;
class DeprecatedStringCodePointIterator;
class StringBuilder;
class StringImpl;
class StringView;
@ -156,6 +157,7 @@ using AK::CircularBuffer;
using AK::CircularQueue;
using AK::DeprecatedFlyString;
using AK::DeprecatedString;
using AK::DeprecatedStringCodePointIterator;
using AK::DoublyLinkedList;
using AK::Error;
using AK::ErrorOr;