operator []= abstract method
- int index,
- E value
Sets the element at the given index
in the set to value
.
The index
must be a valid index of this set, which means that index
must be non-negative and less than length.
Implementation
void operator []=(int index, E value);