without method

Iterable<E> without(
  1. E something
)

This iterable without something.

It uses E.==.

Implementation

Iterable<E> without(E something) sync* {
  for (final e in this) {
    if (something == e) continue;
    yield e;
  }
}