MCPcopy Create free account
hub / github.com/WiseLibs/better-sqlite3 / CompareDatabase

Class CompareDatabase

src/objects/database.hpp:11–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10 // Used to support ordered containers.
11 class CompareDatabase { public:
12 inline bool operator() (Database const * const a, Database const * const b) const {
13 return a < b;
14 }
15 };
16 class CompareStatement { public:
17 inline bool operator() (Statement const * const a, Statement const * const b) const {
18 return Statement::Compare(a, b);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected