Tools.h++ Class Reference

Table Of Contents
Returns true if there are no items in the collection, false otherwise.
T
last() const;
Returns a reference to the last item in the collection.
reference
maxElement();
const_reference
maxElement() const;
reference
minElement();
const_reference
minElement() const;
Returns a reference to the minimum or maximum element in the collection. Type T must
have well-defined less-than semantics (T::operator<(const T&) or equivalent).
size_type
occurrencesOf(const_reference a) const;
Returns the number of elements t in self such that the expression (t == a) is true.
size_type
occurrencesOf(bool (*fn)(const_reference,void*),void* d) const;
Returns the number of elements t in self such that the expression((*fn)(t,d)) is true. fn
points to a user-defined tester function which must have prototype:
bool yourTester(const_reference a, void* d);
Client data may be passed through parameter d.
void
prepend(const_reference a);
Adds the item a to the beginning of the collection.
bool
remove(const_reference a);
Removes the first element t in self such that the expression (t == a) is true and returns
true. Returns false if there is no such element.
bool
remove(bool (*fn)(const_reference,void*), void* d);
Removes the first element t in self such that the expression ((*fn)(t,d)) is true and returns
true. Returns false if there is no such element. fn points to a user-defined tester function
which must have prototype:
bool yourTester(const_reference a, void* d);
Client data may be passed through parameter d.