I tried to remember this, and it drove me crazy.
Basically, it looks like a small array, letβs say, the size is five, and as you add elements, it begins to fill up. When it is full, and you add a new element, the oldest (first added) will be deleted.
You can access the values ββthrough variable [0], variable [1], etc., where variable [0] is the oldest value and variable 4 is the newest.
Any ideas on what this is called? Is this a standard C ++ type, or did I just see it somewhere as a custom class?
Chaos source share