[Glacier] Add the [] operator to string.

This commit is contained in:
Drew Galbraith 2023-10-24 12:34:52 -07:00
parent 990dd4c1e1
commit ca5361b847
2 changed files with 7 additions and 0 deletions

View file

@ -15,6 +15,8 @@ class String {
bool operator==(const String& str);
char operator[](uint64_t offset) const;
private:
char* cstr_;
uint64_t length_;