ONE - On-device Neural Engine
|
This file contains ==
operator to check equality of elements in two vectors.
More...
#include <vector>
Go to the source code of this file.
Functions | |
template<typename T > | |
bool | operator== (const std::vector< T > &lhs, const std::vector< T > &rhs) |
Compare elements of two vectors. | |
This file contains ==
operator to check equality of elements in two vectors.
Definition in file vector.h.
bool operator== | ( | const std::vector< T > & | lhs, |
const std::vector< T > & | rhs | ||
) |
Compare elements of two vectors.
T | Type of elements in vectors |
[in] | lhs | First vector to compare |
[in] | rhs | Second vector to compare |
true
if all elements are equal, otherwise false
. Definition at line 34 of file vector.h.