Filters the elements of a sequence.

// 1, 2, 3
Enumerable.create(1, 2, 3, 4)
          .where('x => x < 4');