On 11 Jan 2004, at 02:26, [EMAIL PROTECTED] wrote:



Message: 7 Date: Sat, 10 Jan 2004 17:08:02 -0800 (PST) From: Alejandro Tejada <[EMAIL PROTECTED]> Subject: Re: Converting Hexadecimal in Binary To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=us-ascii

on Sat, 10 Jan 2004 11:24:00 -0700
Dar Scott wrote

This might be faster yet:

repeat with i = 1 to length(asd) step 6
    put null & binaryEncode("H*", char i to i+5 of
asd) after qwe
end repeat

This is 400% faster than original!!!!!!!!!!


So, putting the function inline cut the time
in half. Excellent!

Look at the three handlers working in this
stack:

snip

On my slower rig it this is a little faster:

repeat with i = 1 to length(asd) step 6
    put 00 & char i to i+5 of asd after qwd
end repeat
put  binaryEncode("H*",qwd) into qwe

Greetings,
WA



_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to