#include "AthContainers/OwnershipPolicy.h"
#include "AthContainers/tools/DVLCast.h"
#include "AthContainers/tools/ElementProxy.h"
#include "CxxUtils/checker_macros.h"
#include <boost/iterator/iterator_adaptor.hpp>
#include <boost/version.hpp>
#include <iterator>
#include <cstdlib>
Go to the source code of this file.
◆ operator!=()
Definition at line 361 of file DVLIterator.h.
363{
364 return i1 != typename DVL::const_iterator (i2);
365}
◆ operator-()
Definition at line 399 of file DVLIterator.h.
401{
402 return i1 - typename DVL::const_iterator (i2);
403}
◆ operator<()
Definition at line 368 of file DVLIterator.h.
370{
371 return i1 < typename DVL::const_iterator (i2);
372}
◆ operator<=()
Definition at line 382 of file DVLIterator.h.
384{
385 return i1 <= typename DVL::const_iterator (i2);
386}
◆ operator==()
Definition at line 354 of file DVLIterator.h.
356{
357 return i1 == typename DVL::const_iterator (i2);
358}
◆ operator>()
Definition at line 375 of file DVLIterator.h.
377{
378 return i1 > typename DVL::const_iterator (i2);
379}
◆ operator>=()
Definition at line 389 of file DVLIterator.h.
391{
392 return i1 >= typename DVL::const_iterator (i2);
393}