MCPcopy Create free account
hub / github.com/IntegralPilot/wasm_os / less

Class less

stdlib/cpp/functional.hpp:8–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6// std::less
7template <typename T = void>
8struct less {
9 bool operator()(const T& lhs, const T& rhs) const {
10 return lhs < rhs;
11 }
12};
13
14// Specialization for void (to allow std::less<> with no arguments)
15template <>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected