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

[REBOL] Re: utf8-encode

From: nitsch-lists:netcologne at: 7-Jun-2002 9:11

Am Freitag, 7. Juni 2002 00:04 schrieb RebOldes:
> R> nobody has utf8-encoder? > R> probably will have to write one by myself > > ok... why there is NO native right/left shift function in Rebol?! >
because it can be replaced by multiplication/division with powers of 2? is rarely needed, and performance is not so critical. something like [ shift: [ 1 2 4 8 16 ..] my-number * shift/2 ] ?