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

Class UserTypeStr

fdbclient/include/fdbclient/Tuple.h:36–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34 };
35
36 struct UserTypeStr {
37 uint8_t code;
38 Standalone<StringRef> str;
39 UserTypeStr(uint8_t code, StringRef str) : code(code), str(str) {}
40
41 bool operator==(const UserTypeStr& other) const { return (code == other.code && str == other.str); }
42 };
43
44 Tuple() {}
45

Callers 2

getUserTypeMethod · 0.85
Tuple.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected