put method

  1. @useResult
IList<T> put(
  1. int index,
  2. T value
)

This is the equivalent to void operator []=(int index, T value); for the IList. Sets the value at the given index in the list to value or throws a RangeError if index is out of bounds.

See also: replace (same as put) and replaceBy.

Implementation

@useResult
IList<T> put(int index, T value) {
  _count();
  return replace(index, value);
}