MCPcopy Create free account
hub / github.com/cinit/TMoe / access

Method access

app/src/main/cpp/utils/Rva.h:38–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36
37 template<class T>
38 inline bool access(size_t offset) const noexcept {
39 if (offset + sizeof(T) > length) {
40 return false;
41 } else {
42 return true;
43 }
44 }
45};
46
47#endif //RPCPROTOCOL_RVA_H

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected