Gostaria de usar o índice do array em uma rotina de mapa. Por exemplo, este código Raku:
raku -e 'my @a = "First", "Second", "Third", "First"; say @a.map({ "Index of $_ is: ;" })'
impressões:
(Index of First is: ; Index of Second is: ; Index of Third is: ; Index of First is: ;)
Seria possível obter o índice do array, como:
(Index of First is: 0; Index of Second is: 1; Index of Third is: 2; Index of First is: 3;)
Obrigado!