Skip to content

Instantly share code, notes, and snippets.

@daviddoran
Created November 24, 2015 15:25
Show Gist options
  • Save daviddoran/1d712ccebaa81a26dd03 to your computer and use it in GitHub Desktop.
Save daviddoran/1d712ccebaa81a26dd03 to your computer and use it in GitHub Desktop.
<?hh // strict
$m = Map {
0 => 'one',
1 => 'two',
2 => 'three',
3 => 'four',
4 => 'five',
};
// Uncomment to repro skipWhile bug
//$m->skipWhile($v ==> $v !== 'one');
// Uncomment to repro takeWhile bug
//$m->takeWhile($_ ==> true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment