| 279 | */ |
| 280 | template <typename T> |
| 281 | inline bool operator==(const Dimensions<T> &lhs, const Dimensions<T> &rhs) |
| 282 | { |
| 283 | return ((lhs.num_dimensions() == rhs.num_dimensions()) && std::equal(lhs.cbegin(), lhs.cend(), rhs.cbegin())); |
| 284 | } |
| 285 | /** Check that given dimensions are not equal. |
| 286 | * |
| 287 | * @param[in] lhs Left-hand side Dimensions. |
nothing calls this directly
no test coverage detected