FixedLengthQueue
Fixed-length FIFO Queue implementation based on a MutableList.
Transparently adds data to the list in reverse (the queue's head is the end of the list), copying and reversing the list when retrieved via getAll.
If you need to be able to tell the difference between a null value and a missing value, consider using Kord's dev.kord.common.entity.optional.Optional as the element type.
Parameters
maxSize
Maximum number of elements in this queue.