Skip to content

Instantly share code, notes, and snippets.

@Garbee
Last active April 9, 2017 03:07
Show Gist options
  • Save Garbee/416584cae1fd7cf616f92ce751108ad9 to your computer and use it in GitHub Desktop.
Save Garbee/416584cae1fd7cf616f92ce751108ad9 to your computer and use it in GitHub Desktop.
func add(Collection<Number> $numbers): Number {
return $numbers.reduce(func (undefined|Object $carry, Number $number): Number {
if ($carry is not defined) {
$carry = new Number(0)
}
return $carry.add($number)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment