Returns the items of a sequence except a list of specific ones.

// 2.0, 2.1, 2.3, 2.5
Enumerable.create(2.0, 2.1, 2.2, 2.3, 2.4, 2.5)
          .except([2.2, 2.4]);

With equality comparer

// 2.0, '2.2', 2.1, 2.3, 2.5
Enumerable.create(2.0, 2.1, '2.2', 2.3, 2.4, 2.5)
          .except([2.2, 2.4],
                  'x, y => x === y');