#include "MyAssert.h" int MyArray::Get(int index) { MY_ASSERT(0 <= index && index < _size); return _data[index]; }