MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / VectorIterator

Method VectorIterator

Kernel/include/vector.h:14–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12 const Vector<T>& vector;
13 public:
14 VectorIterator(const Vector<T>& newVector) : vector(newVector) {};
15 VectorIterator(const VectorIterator& it) : vector(it.vector) { pos = it.pos; };
16
17 VectorIterator& operator++(){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected