mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:57:44 +00:00
AK: Add generic SimpleIterator class to replace VectorIterator.
This commit is contained in:
parent
9648bf4ada
commit
1b3ecb01a5
8 changed files with 152 additions and 90 deletions
|
@ -61,6 +61,12 @@ class CircularDuplexStream;
|
|||
template<typename T>
|
||||
class Span;
|
||||
|
||||
template<typename T>
|
||||
class Array;
|
||||
|
||||
template<typename Container, typename ValueType>
|
||||
class SimpleIterator;
|
||||
|
||||
using ReadonlyBytes = Span<const u8>;
|
||||
using Bytes = Span<u8>;
|
||||
|
||||
|
@ -123,6 +129,7 @@ class Vector;
|
|||
|
||||
}
|
||||
|
||||
using AK::Array;
|
||||
using AK::Atomic;
|
||||
using AK::Badge;
|
||||
using AK::Bitmap;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue