in reply to Re^42: Interleaving bytes in a string quickly
in thread Interleaving bytes in a string quickly

I don't get that.
$ perl -le' > $a=""; $a .= chr 1<<$_ for 0 .. 63; > print length $a; > $a = reverse $a; > print length $a; > ' 64 64
Maybe it's cause I'm on a 32-bit build? $a contains 0..31,0..31 and the reverse once reversed.