Skip to content

Instantly share code, notes, and snippets.

@speedmax
Created March 24, 2009 21:46
Show Gist options
  • Save speedmax/84382 to your computer and use it in GitHub Desktop.
Save speedmax/84382 to your computer and use it in GitHub Desktop.
<?php
/* Blocks */
$list->reduce(array(), '|$rs, $e|
$rs[$e->name] = $e->price;
$rs;
');
/* Yielding
rename evaluate_block -> yield ?
*/
/* Lambda */
$doubleme = lambda('|$n| $n *2;');
$doubleme(99);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment