| 76 | } |
| 77 | |
| 78 | SH operator-(const SH& other) const |
| 79 | { |
| 80 | SH result; |
| 81 | for(uint64 i = 0; i < N; ++i) |
| 82 | result.Coefficients[i] = Coefficients[i] - other.Coefficients[i]; |
| 83 | return result; |
| 84 | } |
| 85 | |
| 86 | |
| 87 | SH& operator*=(const T& scale) |
nothing calls this directly
no outgoing calls
no test coverage detected