| 66 | } |
| 67 | |
| 68 | void |
| 69 | Queue::ModifyAtOrder(unsigned _order) noexcept |
| 70 | { |
| 71 | assert(_order < length); |
| 72 | |
| 73 | unsigned position = order[_order]; |
| 74 | ModifyAtPosition(position); |
| 75 | } |
| 76 | |
| 77 | unsigned |
| 78 | Queue::Append(DetachedSong &&song, uint8_t priority) noexcept |