@brief Add an element to the back of the queue @param value Element to add
| 101 | /// @brief Add an element to the back of the queue |
| 102 | /// @param value Element to add |
| 103 | void push(const value_type& value) { |
| 104 | mContainer.push_back(value); |
| 105 | } |
| 106 | |
| 107 | /// @brief Add an element to the back of the queue (move version) |
| 108 | /// @param value Element to move and add |