public ArraySection <T> Section(int length) { ArraySection <T> result = new ArraySection <T>(_items, this._top, length); return(result); }
static void Resize(ref ArraySection <T> arr, int new_length) { }
public ArraySection <T> Section(int start, int length) { ArraySection <T> result = new ArraySection <T>(_items, start, length); return(result); }