Closed stevan closed 11 years ago
The topic ($_) should automatically be available in certain Array operations. That way we can do this:
@a.map(-> { $_ + 2 });
rather than having to do this
@a.map(-> ($x) { $x + 2 });
The topic ($_) should automatically be available in certain Array operations. That way we can do this:
rather than having to do this