MCPcopy Create free account
hub / github.com/fmtlib/fmt / operator<

Function operator<

include/fmt/base.h:585–587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

583 return lhs.compare(rhs) != 0;
584 }
585 friend auto operator<(basic_string_view lhs, basic_string_view rhs) -> bool {
586 return lhs.compare(rhs) < 0;
587 }
588 friend auto operator<=(basic_string_view lhs, basic_string_view rhs) -> bool {
589 return lhs.compare(rhs) <= 0;
590 }

Callers

nothing calls this directly

Calls 1

compareMethod · 0.80

Tested by

no test coverage detected