source property

Iterable<T> source

Returns the source iterable.

Implementation

Iterable<T> get source => _source;
void source=(Iterable<T> iterable)

Sets the source iterable to be compared.

Implementation

set source(Iterable<T> iterable) {
  _matches.clear();
  _operations.clear();
  _source.clear();
  _source.addAll(iterable);
}