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

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template operator<=

boost::container::operator<= — Lexicographically compares static_vectors.

Synopsis

// In header: <boost/container/static_vector.hpp>


template<typename V, std::size_t C1, std::size_t C2> 
  bool operator<=(static_vector< V, C1 > const & x, 
                  static_vector< V, C2 > const & y);

Description

Complexity. Linear O(N).

Parameters:

x

The first static_vector.

y

The second static_vector.

Returns:

true if y don't compare lexicographically less than x.


PrevUpHomeNext