paludis
Version 2.6.0
|
#include <set.hh>
Public Types | |
typedef T_ | Tag |
Standard library typedefs | |
typedef T_ | value_type |
typedef T_ & | reference |
typedef const T_ & | const_reference |
Basic operations | |
Set () | |
~Set () | |
Set (const Set &)=delete | |
Set & | operator= (const Set &)=delete |
Iteration | |
typedef SetConstIteratorTag< T_, C_ > | ConstIteratorTag |
typedef WrappedForwardIterator< ConstIteratorTag, const T_ > | ConstIterator |
typedef SetInsertIteratorTag< T_, C_ > | InserterTag |
typedef WrappedOutputIterator< InserterTag, T_ > | Inserter |
ConstIterator | begin () const PALUDIS_ATTRIBUTE((warn_unused_result)) |
ConstIterator | end () const PALUDIS_ATTRIBUTE((warn_unused_result)) |
ConstIterator | find (const T_ &) const PALUDIS_ATTRIBUTE((warn_unused_result)) |
Inserter | inserter () |
Content information | |
bool | empty () const PALUDIS_ATTRIBUTE((warn_unused_result)) |
unsigned | size () const PALUDIS_ATTRIBUTE((warn_unused_result)) |
unsigned | count (const T_ &) const PALUDIS_ATTRIBUTE((warn_unused_result)) |
Content modification | |
void | insert (const T_ &) |
void | erase (const T_ &) |
void | clear () |
A wrapper around a set, avoiding the need to include lots of STL bloat all over the place.