in reply to Re^2: In need of a sequence iterator.
in thread In need of a sequence iterator.
The $count can get upto 255 (and theoretically beyond with unicode). The numbers are eventually packed to form a binary string of codepoints that increment, magic string auto-increment style, but starting at chr(0) and modulo alphabet size.
I'm currently limiting my thinking to 8-bit ascii bytes, but notionally the alphabet could be larger with unicode.
The actual keys involved (made up from an arbitrary alphabet) are translated to chr(0) ... chr(alphabet max).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: In need of a sequence iterator.
by hv (Prior) on Dec 03, 2004 at 12:53 UTC |