in reply to Running count in map

You can do something like:

my @map_list = ( ... ); map { process $map_list[$_] } (0 .. $#map_list)

Regards,

PN5