in reply to Re^5: Overcoming addiction to Lisp
in thread Overcoming addiction to Lisp

Or else you could use a tied array, and that way you'll get to use all the standard array goodies, without reinventing the wheel.

Replies are listed 'Best First'.
Re^7: Overcoming addiction to Lisp
by runrig (Abbot) on Jun 16, 2005 at 20:40 UTC
    A tied array would require more infrastructure (i.e. it's more cumbersome to make, which is just MHO and an arguable point), and I don't see that creating a simple iterator is reinventing the wheel, especially seeing as how there's a pretty decent book out with chapters on this very thing.
      Henry Baker sees iterators as a potential sign of weakness...
      The appearance of iterators in an object-oriented language appears to be inversely related to the power of the language's intrinsic control structures. Iterator classes are used for the sole purpose of enumerating the elements of an abstract collection class without revealing its implementation. We find that the availability of higher-order functions and function closures eliminates the need for these ad hoc iterator classes