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

Function bitwise_and

include/chaiscript/dispatchkit/operators.hpp:168–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166
167 template<typename T>
168 void bitwise_and(Module& m)
169 {
170 m.add(chaiscript::fun([](const T &lhs, const T &rhs){return lhs&rhs;}), "&");
171 }
172
173 template<typename T>
174 void bitwise_compliment(Module& m)

Callers

nothing calls this directly

Calls 2

funFunction · 0.85
addMethod · 0.45

Tested by

no test coverage detected