Returns the source iterable.
Iterable<T> get source => _source;
Sets the source iterable to be compared.
set source(Iterable<T> iterable) { _matches.clear(); _operations.clear(); _source.clear(); _source.addAll(iterable); }