Subordination
A framework for distributed programming
|
Output iterator that inserts element to the container on assignment. More...
#include <queue_pusher.hh>
Public Types | |
typedef Container | container_type |
Container type. | |
typedef Traits | traits_type |
Container traits type. | |
typedef cont_value_type | object_type |
Container element type. | |
Public Member Functions | |
queue_push_iterator (Container &x) noexcept | |
Construct queue push iterator from container x . | |
queue_push_iterator & | operator= (const object_type &rhs) |
Push element to the container. | |
queue_push_iterator & | operator= (const object_type &&rhs) |
Move element to the container. | |
queue_push_iterator & | operator * () noexcept |
Does nothing. | |
queue_push_iterator & | operator++ () noexcept |
Does nothing. | |
queue_push_iterator | operator++ (int) noexcept |
Does nothing. | |
Output iterator that inserts element to the container on assignment.
Container | container type |
Traits | container traits type |