MCPcopy Create free account
hub / github.com/Xtra-Computing/thundersvm / Not

Function Not

include/thundersvm/util/log.h:927–929  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

925 }
926 template <typename Enum>
927 static inline base::type::EnumType Not(Enum e, base::type::EnumType flag) {
928 return static_cast<base::type::EnumType>(flag) & ~(static_cast<base::type::EnumType>(e));
929 }
930 template <typename Enum>
931 static inline base::type::EnumType Or(Enum e, base::type::EnumType flag) {
932 return static_cast<base::type::EnumType>(flag) | static_cast<base::type::EnumType>(e);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected