operator []= method
Sets the entry at the given index in the list to value.
Throws an IndexOutOfRangeException if index is out of bounds.
Implementation
@override
void operator []=(int index, E value) {
check(value);
_wrappedList[index] = value;
}