ROSE 0.11.145.147
|
A version of WorkList that does not check for uniqueness by default.
The insertion methods do not check for uniqueness and always insert the specified item into the list. The uniqueness checking can be enabled per insert operation by specifying a true value for the check_uniqueness argument. Insertions are O(1) by default, but O(N) if a uniqueness check is performed. Existence checks are always O(N).
Definition at line 157 of file WorkLists.h.
#include <frontend/BinaryFormats/WorkLists.h>
Additional Inherited Members | |
Public Types inherited from WorkList< T, Compare > | |
typedef T | value_type |
typedef Compare | key_compare |
Public Member Functions inherited from WorkList< T, Compare > | |
WorkList (bool check_uniqueness=false) | |
bool | empty () const |
Returns true if this work list is empty. | |
size_t | size () const |
Returns the number of items in the work list. | |
void | clear () |
Reset the list to an empty state. | |
bool | exists (const T &item) const |
Return true if the specified item is already on the work list. | |
bool | unshift (const T &, boost::tribool check_uniqueness=boost::indeterminate) |
Add an item to the front of the work list. | |
template<class Iterator > | |
size_t | unshift (const Iterator &begin, const Iterator &end, boost::tribool check_uniqueness=boost::indeterminate) |
Adds multiple items to the front of the work list. | |
T | shift () |
Remove and return the item from the front of the work list. | |
bool | push (const T &, boost::tribool check_uniqueness=boost::logic::indeterminate) |
Add an item to the back of the work list. | |
template<class Iterator > | |
size_t | push (const Iterator &begin, const Iterator &end, boost::tribool check_uniqueness=boost::indeterminate) |
Adds multiple items to the back of the work list. | |
T | pop () |
Remove an item from the back of the work list. | |
T | take () |
Remove and return an item from the front of the work list. | |
const T & | front () const |
Returns the object at the front/back of the list without removing it. | |
const T & | back () const |
Returns the object at the front/back of the list without removing it. | |
void | add (const T &item) |
Adds an item(s) to the end of the queue. | |
void | add (const std::vector< T > &items) |
Adds an item(s) to the end of the queue. | |
void | add (const std::set< T > &items) |
Adds an item(s) to the end of the queue. | |
|
inline |
Definition at line 159 of file WorkLists.h.