You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A fixed size buffer, where you can add a new element automatically evicting last one (implemented by fixed size array with moving begin pointer).
In Java I would use ArrayDeque with manual adding and popping, but it is not very convenient and not thread safe.