Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Why does 'reverse returns the tail of the block?

From: rotenca:telvia:it at: 12-Nov-2002 15:13

Hi all, it seems to me always the same behaviour:
>> reverse/part next b: [0 1 2 3] 2
== [3]
>> remove/part next b: [0 1 2 3] 2
== [3]
>> change/part next b: [0 1 2 3] [a a] 2
== [3] Rebol returns the end of the changed/removed/inserted/reversed part of series, if the part is all the serie, then it returns the tail of serie. --- Ciao Romano