push method
Implementation
void push(int value) {
if (_top == _vector.length - 1) {
_grow();
}
_vector[++_top] = value.toSigned(16);
}
void push(int value) {
if (_top == _vector.length - 1) {
_grow();
}
_vector[++_top] = value.toSigned(16);
}