MCPcopy Create free account
hub / github.com/apache/tvm-ffi / operator<

Function operator<

include/tvm/ffi/string.h:1242–1242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1240inline bool operator<(const String& lhs, std::nullptr_t) = delete;
1241
1242inline bool operator<(const String& lhs, const std::string& rhs) { return lhs.compare(rhs) < 0; }
1243
1244inline bool operator<(const std::string& lhs, const String& rhs) { return rhs.compare(lhs) > 0; }
1245

Callers

nothing calls this directly

Calls 1

compareMethod · 0.45

Tested by

no test coverage detected