MCPcopy Create free account
hub / github.com/apple/foundationdb / AttribKey

Class AttribKey

fdbrpc/include/fdbrpc/ReplicationTypes.h:39–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37extern int g_replicationdebug;
38
39struct AttribKey {
40 int _id;
41 explicit AttribKey() : _id(-1) {}
42 explicit AttribKey(int id) : _id(id) {}
43 bool operator==(AttribKey const& source) const { return _id == source._id; }
44 bool operator<(AttribKey const& source) const { return _id < source._id; }
45};
46struct AttribValue {
47 int _id;
48 explicit AttribValue() : _id(-1) {}

Callers 3

keyIndexMethod · 0.85
keyTextMethod · 0.85
LocalitySetClass · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected