xsawyerx / guacamole

Guacamole is a parser toolkit for Standard Perl. It provides fully static BNF-based parsing capability to a reasonable subset of Perl.
https://metacpan.org/pod/Guacamole
20 stars 8 forks source link

Direct array and hash access #42

Closed xsawyerx closed 4 years ago

xsawyerx commented 4 years ago
# array and hash
$array[$index]
$hash{$value}

# array slices on array and hash
@array[@indices]
@hash{@keys}

# hash slices on array and hash
%array[@indices]
%hash{@keys}

@vickenty, do you feel like taking this? :)