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

[REBOL] Select VS path access

From: robert:muench:robertmuench at: 9-Nov-2002 16:41

Hi, is there a difference (speed?) between the following two methods?
>>Test: [a 1 b 2 c 3] >>Test/a
== 1
>>select Test 'a
== 1 The only difference I see is that the path method results in a value and that SELECT returns a series. Is this more? Robert