Exemplo n.º 1
0
 public function testDropWhile()
 {
     $this->assertSame(array(0, $this->a, $this->b, 0), $this->seq->dropWhile(function () {
         return false;
     })->all());
     $this->assertSame(array(), $this->seq->dropWhile(function () {
         return true;
     })->all());
 }