Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template exclusive_less

boost::itl::exclusive_less — Comparison functor on intervals implementing an overlap free less.

Synopsis

template<class IntervalType > 
struct exclusive_less {

  // public member functions
  bool operator()(const IntervalType &, const IntervalType &) const;
};

Description

exclusive_less public member functions

  1. bool operator()(const IntervalType & x1, const IntervalType & x2) const;

    Operator operator() implements a strict weak ordering on intervals.


PrevUpHomeNext