List:
I need to provide an enumerator for something that doesn't have an
underlying collection.
Aside from providing function -4, what other functions do I need to
supply to provide this functionality.
I'm thinking of things like providing all different traversals for a
tree, traversing a linked list . . those sorts of things.
What I need is a discussion of the required functions, their IDs, and
what they should return. I've seen examples that Just Work, but I'm
having trouble making sense of what requirements are being implements.
Thanx
Charles
Mike D Sutton - 28 Feb 2005 15:26 GMT
> I need to provide an enumerator for something that doesn't have an
> underlying collection.
[quoted text clipped - 8 lines]
> what they should return. I've seen examples that Just Work, but I'm
> having trouble making sense of what requirements are being implements.
You'll most likely find what you're after there:
http://www.mvps.org/vbvision/collections.htm
Hope this helps,
Mike
- Microsoft Visual Basic MVP -
E-Mail: EDais@mvps.org
WWW: Http://EDais.mvps.org/
Charles Krug - 28 Feb 2005 19:40 GMT
>> I need to provide an enumerator for something that doesn't have an
>> underlying collection.
[quoted text clipped - 14 lines]
>
> Mike
Looks promising. I'll check it out, thanx.
Charles