inline ELEM_ __get(int inIdx) const { return CheckGetPtr()->__get(inIdx); }
| 1156 | inline ELEM_ operator[](int inIdx) const { return CheckGetPtr()->__get(inIdx); } |
| 1157 | //inline ELEM_ __get(int inIdx) const { return CheckGetPtr()->__get(inIdx); } |
| 1158 | inline int __length() const { return CheckGetPtr()->__length(); } |
| 1159 | inline Array<ELEM_> &Add(const ELEM_ &inElem) { CheckGetPtr()->Add(inElem); return *this; } |
| 1160 | inline Array<ELEM_> & operator<<(const ELEM_ &inElem) { CheckGetPtr()->Add(inElem); return *this; } |
| 1161 | }; |