in reply to Re^61: Interleaving bytes in a string quickly
in thread Interleaving bytes in a string quickly
I am referring to an ordered collection of 8 bits.
No you weren't. How can an ordered collection of 8-bits be "just stored differently"?
$_ = "\x80\x81"; # Value is bytes 80 81 utf8::upgrade($_); # Value is still bytes 80 81, # just stored differently.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^63: Interleaving bytes in a string quickly
by ikegami (Patriarch) on Mar 04, 2010 at 17:51 UTC | |
by Anonymous Monk on Mar 04, 2010 at 18:07 UTC | |
by Anonymous Monk on Mar 04, 2010 at 18:02 UTC |