MCPcopy Create free account
hub / github.com/Tencent/MMKV / operator &

Function operator &

Core/MemoryFile.h:59–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59static inline bool operator & (OpenFlag left, OpenFlag right) {
60 return ((static_cast<uint32_t>(left) & static_cast<uint32_t>(right)) != 0);
61}
62
63static inline OpenFlag operator & (OpenFlag left, uint32_t right) {
64 return static_cast<OpenFlag>(static_cast<uint32_t>(left) & right);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected