feat(containers): add TArray::Reference and TArray::ConstReference etc

This commit is contained in:
2023-03-01 18:32:32 +08:00
parent a15ff69809
commit 7a8a1648d1
3 changed files with 12 additions and 4 deletions

View File

@ -140,6 +140,8 @@ public:
using ElementType = T;
using Reference = T&;
using Iterator = NAMESPACE_PRIVATE::TArrayViewIterator<ElementType>;
using ReverseIterator = TReverseIterator<Iterator>;