get method
Returns the element at the specified index.
index
the index of the element to return
Implementation
E get(int index) {
return _list[index];
}
Returns the element at the specified index.
index
the index of the element to return
E get(int index) {
return _list[index];
}