Skip to content

SmartVector Iterators

Philipp Seiwald requested to merge smartvector_iterator into dev-v2

Adds iterator functionality to the SmartVector class. The API is extended (fully backwards compatible).

New Features

  • [memory]:
    • SmartVector class now features ConstIterator and Iterator for container access (can be obtained from the SmartVector by begin(), end(), cbegin() and cend() similar to std::vector). The iterators are of type random access.
Edited by Philipp Seiwald

Merge request reports