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

Method operator==

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

Source from the content-addressed store, hash-verified

36 }
37
38 friend bool operator==(const VectorIterator& l, const VectorIterator& r){
39 if(l.pos == r.pos){
40 return true;
41 } else {
42 return false;
43 }
44 }
45
46 friend bool operator!=(const VectorIterator& l, const VectorIterator& r){
47 if(l.pos != r.pos){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected