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

Method operator!=

Kernel/include/list.h:69–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67 }
68
69 friend bool operator!=(const ListIterator& l, const ListIterator& r){
70 if(l.node != r.node){
71 return true;
72 } else {
73 return false;
74 }
75 }
76};
77
78// Type is required to be a pointer with the members next and prev

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected