operator [] method

SearchFilter operator [](
  1. int index
)
Gets or sets the search filter at the specified index. The zero-based index of the search filter to get or set.

Implementation

SearchFilter operator [](int index) {
  if (index < 0 || index >= this.Count) {
    throw new RangeError.range(
        index, 0, this.Count, "index", "Strings.IndexIsOutOfRange");
  }

  return this._searchFilters[index];
}