mirror of
https://github.com/topjohnwu/cxx.git
synced 2025-02-19 07:38:02 +00:00
Add Slice indexing to API on website
This commit is contained in:
parent
b4512a4465
commit
974bc9559d
@ -25,6 +25,12 @@ public:
|
||||
T *data() const noexcept;
|
||||
size_t size() const noexcept;
|
||||
size_t length() const noexcept;
|
||||
bool empty() const noexcept;
|
||||
|
||||
T &operator[](size_t n) const noexcept;
|
||||
T &at(size_t n) const;
|
||||
T &front() const noexcept;
|
||||
T &back() const noexcept;
|
||||
|
||||
class iterator;
|
||||
iterator begin() const noexcept;
|
||||
|
Loading…
x
Reference in New Issue
Block a user