growBy method
Implementation
void growBy(int count) {
if (count == 0) return;
grow(count);
for (var index = _size; index < _size + count; index++) {
_storage[index] = _zeroValue();
}
_size += count;
}
void growBy(int count) {
if (count == 0) return;
grow(count);
for (var index = _size; index < _size + count; index++) {
_storage[index] = _zeroValue();
}
_size += count;
}