What's the fastest way to compare vectors in C++?
21:54 01 Nov 2016

What is the fastest way to see if two vectors are equal in c++?

I'm trying to find the fastest way to see if any row is equal to any column of a matrix, so element by element comparison and exiting the loop when not equal is not good enough.

c++ arrays vector compare equality