Return true if the specified lhs and rhs arrays do not have the same value, and false otherwise.
Synopsis
Declared in <bdlc_compactedarray.h>
template<class TYPE>
bool
operator!=(
CompactedArray<TYPE> const& lhs,
CompactedArray<TYPE> const& rhs);
Description
Two CompactedArray arrays do not have the same value if they do not have the same length, or if any corresponding elements (those at the same indices) do not have the same value.
Return Value
true if the arrays do not have the same value, and false otherwise
Parameters
Name |
Description |
lhs |
left‐hand‐side array |
rhs |
right‐hand‐side array |
Created with MrDocs