IndexMap.h
bool operator==(const IndexMap< T > &map1, const IndexMap< T > &map2)
Comparing maps, by comparing all the elements.
Definition: IndexMap.h:124
virtual IndexMapInit< T > * clone() const =0
Cloning a pointer, override with code to create a fresh copy.
void assertTrue(const T &value, const std::string &message)
Definition: assertions.h:61
bool contains(long j) const
Returns true iff the set contains j.
Definition: IndexSet.cpp:76
long last() const
Returns the last element, -1 if the set is empty.
Definition: IndexSet.h:71
const IndexSet & getIndexSet() const
Get the underlying index set.
Definition: IndexMap.h:66
IndexMap<T> implements a generic map indexed by a dynamic index set.
Definition: IndexMap.h:44
void insert(long j)
Insert indexes to the IndexSet. Insertion will cause new T objects to be created, using the default c...
Definition: IndexMap.h:88
bool operator!=(const IndexMap< T > &map1, const IndexMap< T > &map2)
Definition: IndexMap.h:138
long next(long j) const
Returns the next element after j, if any; otherwise j+1.
Definition: IndexSet.cpp:48
Definition: apiAttributes.h:21
long first() const
Returns the first element, 0 if the set is empty.
Definition: IndexSet.h:68
virtual void init(T &)=0
Initialization function, override with initialization code.
void remove(long j)
Delete indexes from IndexSet, may cause objects to be destroyed.
Definition: IndexMap.h:103
T & operator[](long j)
Access functions: will raise an error if j does not belong to the current index set.
Definition: IndexMap.h:70
IndexMap(IndexMapInit< T > *_init)
A map with an initialization object. This associates a method for initializing new elements in the ma...
Definition: IndexMap.h:63