at method

FinderBase<CandidateType> at(
  1. int index
)

Returns a variant of this finder that only matches the item at the given index found by this finder.

Implementation

FinderBase<CandidateType> at(int index) => _IndexFinder<CandidateType>(this, index);