Exemple #1
0
 /** Greater-than operator (lexicographical comparison in order of increasing index). */
 bool operator>(VectorT const & rhs) const
 {
   return std::lexicographical_compare(rhs.begin(), rhs.end(), begin(), end());
 }