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

Function addFlag

include/thundersvm/util/log.h:936–938  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

934 } // namespace bitwise
935 template <typename Enum>
936 static inline void addFlag(Enum e, base::type::EnumType* flag) {
937 *flag = base::utils::bitwise::Or<Enum>(e, *flag);
938 }
939 template <typename Enum>
940 static inline void removeFlag(Enum e, base::type::EnumType* flag) {
941 *flag = base::utils::bitwise::Not<Enum>(e, *flag);

Callers 8

mainFunction · 0.85
mainFunction · 0.85
parseFromFormatMethod · 0.85
StorageMethod · 0.85
addFlagMethod · 0.85
addFlagMethod · 0.85
ScopedAddFlagMethod · 0.85
~ScopedRemoveFlagMethod · 0.85

Calls

no outgoing calls

Tested by 1

mainFunction · 0.68