• Neo@lemmy.hacktheplanet.be
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    4 months ago

    I use a deque to fill a queue from the right, items get consumed from the left. Sometimes feedback from an external control mechanism will request an item be added to the queue with high priority. This item is then added to the left of the queue and will get consumed next, before all the others already in the queue. For me this was a good use case for a deque and it works well.