[REBOL] Re: Searching in "table"
From: moliad:g:mail at: 4-Sep-2007 23:33
examble using new nice data :-)> table: [ > 3 "Tim" "Peterson" 2 > 1 "John" "Smith" 3 > 2 "Jeff" "Brown" 1 > ]select/skip table 1 4 == ["John" "Smith" 3] this also has the advantage of being very fast and saves a lot of ram. and on big apps/data set this is an exponential save, as you are freeing the GC of a lot of ram juggling, for those unneeded blocks. -MAx