| 1322 | // inline friend speeds up overload resolution |
| 1323 | friend |
| 1324 | bool |
| 1325 | operator!=( |
| 1326 | array const& lhs, |
| 1327 | array const& rhs) noexcept |
| 1328 | { |
| 1329 | return ! (lhs == rhs); |
| 1330 | } |
| 1331 | |
| 1332 | /** Serialize to an output stream. |
| 1333 |
nothing calls this directly
no outgoing calls
no test coverage detected