in reply to Re^2: XS: SvPVLV examples?
in thread XS: SvPVLV examples?
I disagree. If you are dealing with numeric data in its binary form, you will always have to do some pre and post processing of the binary values
That has nothing to do with whether you use
or the faster++( $mmap->uint8(0x1234) );
$mmap->preinc_uint8(0x1234);
Now, using magic allows you to reuse existing code (like the ++ operator), so I thought you'd be willing to absorb the cost. That's why I proceeded.
It would be easier to follow if the posts were in a single contiguous thread rather than scattered around.
Then depth of the thread was causing problems. I took the fresh start from actually breaking out of the XY problem as a good point to restart. Your post actually forks that new branch.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: XS: SvPVLV examples?
by BrowserUk (Patriarch) on Sep 25, 2009 at 21:13 UTC | |
by ikegami (Patriarch) on Sep 26, 2009 at 01:47 UTC |