| 851 | struct operation_leftshift { int operator()(const int& a, const int& b) { return a << b; } }; |
| 852 | struct operation_rightshift { int operator()(const int& a, const int& b) { return a >> b; } }; |
| 853 | struct operation_reverse { int operator()(const int& a, const int& b) { return ~a; } }; |
| 854 | struct operation_xor { int operator()(const int& a, const int& b) { return a ^ b; } }; |
| 855 | struct operation_or { int operator()(const int& a, const int& b) { return a | b; } }; |
| 856 | struct operation_and { int operator()(const int& a, const int& b) { return a & b; } }; |
nothing calls this directly
no outgoing calls
no test coverage detected