Baigudin Software avatar
Baigudin Software logo
home
ru region
en region

Interface «api::Iterable<Type>»

Iterable interface.

public: virtual ~Iterable();

Destructor.

public: virtual api::Iterator<Type>* getIterator();

Returns an iterator of elements.

You have to call the delete operator for returned iterator when it has been used, and you do not need to iterate a collection.

Returns:
pointer to new iterator.

public: virtual bool isConstructed() const;

Tests if this object has been constructed.

public: static bool isObject(const Type* obj);

Tests if given object has been constructed object.

Back to class list