Skips elements of that sequence while a condition matches.

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