circulator.h 47 inline circulator(const circulator<T> & other) : m_here(other.m_here), m_begin(other.m_begin), m_end(other.m_end) {}
a circulator that is foreseen to take as template member either a pointer or an iterator; Definition: circulator.h:36 circulator(T here, T begin, T end) ctor with iniitalisation from iterators Definition: circulator.h:43 void set_position(T pointer) set just the position without resetting the begin and end elements Definition: circulator.h:55 bool operator!=(const circulator &other) const check if the current elements are different NB: for efficiency, this checks only the here element Definition: circulator.h:82 void set_position(const circulator< T > &other) set just the position without resetting the begin and end elements Definition: circulator.h:51 bool operator==(const circulator &other) const check if the current elements are the same NB: for efficiency, this checks only the here element Definition: circulator.h:77 The SISCone project has been developed by Gavin Salam and Gregory Soyez Documentation generated on Tue Jun 20 2023 18:08:37 for SISCone by Doxygen 1.9.4 |