Takes elements while a condition matches.

// 22, 33, 44
Enumerable.create(22, 33, 44, 55)
          .takeWhile('x => x < 50');