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

I could use it. I know the data I'd be passing are byte strings. Nothing else makes sense given the purpose of the code.

But I know I'm not going to use it, so I don't waste time perfecting code that I'm not going to use for all possible scenarios. It'd be like ironing my old newspapers before discarding them :)


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
"I'd rather go naked than blow up my ass"
  • Comment on Re^5: Interleaving bytes in a string quickly

Replies are listed 'Best First'.
Re^6: Interleaving bytes in a string quickly
by ikegami (Patriarch) on Feb 26, 2010 at 22:10 UTC

    I could use it. I know the data I'd be passing are byte strings.

    That only excuses the first of the three. Mind you, the third could be documented as a known limitation, but it's probably free to handle.

      Okay. How could it "silently encode my bytes as utf"?


      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.
        Perl has two types of strings. Strings of ≤8-bit values and strings of ≤32/64-bit values. If it uses the latter format to store your string of bytes, they will appears as if they have been UTF-8 encoded if you look at SvPVX.