Hi Gabriele,
Gabriele Santilli wrote:
>
> Hello Nenad!
>
> On 03-Mar-01, you wrote:
>
> NR>> Is append a good way to join two binaries ?
>
> NR> Sure, it's a good way. You can also use 'join (should be a
> NR> little bit faster).
>
> Actually, JOIN would be a bit slower (but does not modify the
> first series):
>
> join: func [
> "Concatenates values."
> value "Base value"
> rest "Value or block of values"
> ][
> value: either series? value [copy value] [form value]
> repend value rest
> ]
Thanks for correcting my mistake. I was really convinced that 'join was
native! (maybe it should be ?). Looks like i'm going to optimize a lot of
my code. :)
Cheers,
DocKimbel.
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.