MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / operator!=

Method operator!=

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

Source from the content-addressed store, hash-verified

44 }
45
46 friend bool operator!=(const VectorIterator& l, const VectorIterator& r){
47 if(l.pos != r.pos){
48 return true;
49 } else {
50 return false;
51 }
52 }
53 };
54private:
55 T* data = nullptr;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected