TwiceAsNice  2019-02-18
Classes | Namespaces | Functions
base.hpp File Reference
#include <boost/call_traits.hpp>
#include <boost/concept_check.hpp>
#include <boost/limits.hpp>
#include <boost/iterator/reverse_iterator.hpp>
#include <boost/iterator/iterator_traits.hpp>
#include <boost/type_traits/is_stateless.hpp>
#include <boost/type_traits/is_integral.hpp>
#include <algorithm>
#include <utility>
#include <deque>
#include <stdexcept>
#include <cstring>
Include dependency graph for base.hpp:
This graph shows which files directly or indirectly include this file:

Classes

class  boost::circular_buffer< T, Alloc >
 Circular buffer - a STL compliant container. More...
 

Namespaces

 boost
 

Functions

template<class T , class Alloc >
bool boost::operator== (const circular_buffer< T, Alloc > &lhs, const circular_buffer< T, Alloc > &rhs)
 Compare two circular_buffers element-by-element to determine if they are equal. More...
 
template<class T , class Alloc >
bool boost::operator< (const circular_buffer< T, Alloc > &lhs, const circular_buffer< T, Alloc > &rhs)
 Compare two circular_buffers element-by-element to determine if the left one is lesser than the right one. More...
 
template<class T , class Alloc >
bool boost::operator!= (const circular_buffer< T, Alloc > &lhs, const circular_buffer< T, Alloc > &rhs)
 Compare two circular_buffers element-by-element to determine if they are non-equal. More...
 
template<class T , class Alloc >
bool boost::operator> (const circular_buffer< T, Alloc > &lhs, const circular_buffer< T, Alloc > &rhs)
 Compare two circular_buffers element-by-element to determine if the left one is greater than the right one. More...
 
template<class T , class Alloc >
bool boost::operator<= (const circular_buffer< T, Alloc > &lhs, const circular_buffer< T, Alloc > &rhs)
 Compare two circular_buffers element-by-element to determine if the left one is lesser or equal to the right one. More...
 
template<class T , class Alloc >
bool boost::operator>= (const circular_buffer< T, Alloc > &lhs, const circular_buffer< T, Alloc > &rhs)
 Compare two circular_buffers element-by-element to determine if the left one is greater or equal to the right one. More...
 
template<class T , class Alloc >
void boost::swap (circular_buffer< T, Alloc > &lhs, circular_buffer< T, Alloc > &rhs)
 Swap the contents of two circular_buffers. More...