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

Method operator==

Kernel/include/list.h:61–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59 }
60
61 friend bool operator==(const ListIterator& l, const ListIterator& r){
62 if(l.node == r.node){
63 return true;
64 } else {
65 return false;
66 }
67 }
68
69 friend bool operator!=(const ListIterator& l, const ListIterator& r){
70 if(l.node != r.node){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected