Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

operator==(quat,quat)

QVM: Quaternions, Vectors, Matrices

operator==(quat,quat)

#include <boost/qvm/quat_operations.hpp>

namespace boost
{
    namespace qvm
    {
        //Only enabled if:
        //  is_quat::value && is_quat::value
        template 
        bool operator==( A const & a, B const & b );
    }
}

Returns:

true if each element of a compares equal to its corresponding element of b, false otherwise.