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

[REBOL] Re: Switch with refinements/hmmm!

From: rotenca:telvia:it at: 2-Nov-2001 15:05

Hi, Joel
> use a block as the "selection key". The simplest fix I've come up with so
far
> is > > print select/only reduce [ > reduce [none none none] "no refs" > reduce [true none none] "ref a" > ... > ] reduce [refa refb refc] > Incidentally, I'm working up a set of benchmarks on all of the variations > discussed in this thread; I'll publish results later today.
I think, it is more fast to change only the value to select: print select/only [ [none none none] "no refs" [true none none] "ref a" ... ] load mold/only reduce [refa refb refc]
> -jn-
--- Ciao Romano