./perl6 -e 'my @a = < A B C >; @a = lc @a; say @a, " Size = ", @a + 0;' a b c Size = 1
Is this the way lc is supposed to operate on the elements of an array? I.e. converting the individual elements of the source, but combining them into one element in the destination.