MCPcopy Create free account
hub / github.com/cvanaret/Uno / operator!=

Method operator!=

uno/linear_algebra/SparseVector.hpp:33–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31 }
32
33 friend bool operator!=(const iterator& a, const iterator& b) {
34 return &a.vector != &b.vector || a.index != b.index;
35 }
36
37 friend bool operator==(const iterator& a, const iterator& b) {
38 return &a.vector == &b.vector && a.index == b.index;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected