MCPcopy Create free account
hub / github.com/ceres-solver/ceres-solver / operator<

Method operator<

include/ceres/internal/fixed_array.h:319–322  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

317 }
318
319 friend bool operator<(const FixedArray& lhs, const FixedArray& rhs) {
320 return std::lexicographical_compare(
321 lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
322 }
323
324 friend bool operator>(const FixedArray& lhs, const FixedArray& rhs) {
325 return rhs < lhs;

Callers

nothing calls this directly

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected