MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / bitwise_xor

Function bitwise_xor

include/chaiscript/dispatchkit/operators.hpp:180–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178
179 template<typename T>
180 void bitwise_xor(Module& m)
181 {
182 m.add(chaiscript::fun([](const T &lhs, const T &rhs){return lhs^rhs;}), "^");
183 }
184
185 template<typename T>
186 void bitwise_or(Module& m)

Callers

nothing calls this directly

Calls 2

funFunction · 0.85
addMethod · 0.45

Tested by

no test coverage detected