| 848 | struct operation_multiply { int operator()(const int& a, const int& b) { return a * b; } }; |
| 849 | struct operation_divide { int operator()(const int& a, const int& b) { return a / b; } }; |
| 850 | struct operation_mod { int operator()(const int& a, const int& b) { return a % b; } }; |
| 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; } }; |
nothing calls this directly
no outgoing calls
no test coverage detected