| Types |
Description |
| value_type |
The type of the objects stored in a mbox container. |
| reference |
Reference to an element. |
| const_reference |
Const reference to an element. |
| pointer |
Pointer to an element. |
| size_type |
An unsigned integral type. |
| difference_type |
An signed integral type. |
| iterator |
Iterator to iterate through the elements. |
| const_iterator |
Const iterator to iterate through the elements. |
| Methods |
|
iterator
begin() |
Returns a const iterator pointing to the first element. |
|
iterator
end() |
Returns a const iterator pointing to the end. |
|
const_iterator
begin()
const
|
Returns a const iterator pointing to the first element. |
|
const_iterator
end()
const
|
Returns a const iterator pointing to the end. |
|
size_type
size()
const
|
Returns the current size in bytes of the mbox. |
|
bool
empty()
const
|
Returns true if the mbox is empty. |