operator!=

template<class T, class A>
    bool operator!=(
        const vector <T, A>& lhs,
        const vector <T, A>& rhs);

The template function returns !(lhs == rhs).


Send feedback to MSDN.Look here for MSDN Online resources.