Home | Libraries | People | FAQ | More |
boost::operator!= — Compare two circular_buffer
s element-by-element to determine if they are non-equal.
// In header: <boost/circular_buffer/base.hpp> template<typename T, typename Alloc> bool operator!=(const circular_buffer< T, Alloc > & lhs, const circular_buffer< T, Alloc > & rhs);
Complexity. Linear (in the size of the
s). circular_buffer
Iterator Invalidation. Does not invalidate any iterators.
See Also:
operator==(const circular_buffer<T,Alloc>&, const circular_buffer<T,Alloc>&)
Parameters: |
|
||||
Returns: |
|
||||
Throws: |
Nothing. |