System::Collections::Generic::BaseEnumerator class

BaseEnumerator class

Enumerator definition to wrap STL-styled types for C#-styled usage. Makes no assertions on container structure except for existance of sequental iterator. Uses begin() and end() functions. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

template<typename Container,typename Element>class BaseEnumerator : public System::Collections::Generic::IEnumerator<Element>
ParameterDescription
ContainerSTL-styled container type.
ElementElement type.

Methods

MethodDescription
BaseEnumerator(const Object::ptr&, Container&)Initializes iterator.
IsValid() constChecks whether MoveNext() was called and end was not reached.
MoveNext() overrideEnumerator-style increment.
Reset() overrideResets enumerator to allow re-enumerating elements.

See Also