Is it possible to change the value of a lexically scoped variable in a Hack lambda expression?
function allTrue(Map<string, bool> $map): bool {
$valid = 1;
$map->map($a ==> $valid &= $a);
return $valid === 1;
}
$map = Map{'foo' => true, 'bar' => false };
var_dump(allTrue($map)); // true
I would expect the return value to be false
Unfortunately Hack lambda expressions do not support this. However you can still fall back on PHP 5.3 closure syntax.
This works because: Objects of type Closure created by lambda expression syntax vs. PHP 5.3's closure syntax are interchangeable;
From the docs