1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 17:43:05 +08:00

Add more descriptive xmldoc for ReverseQueue

This commit is contained in:
Samuel Cattini-Schultz 2021-04-06 11:30:58 +10:00
parent ffe7edc16a
commit 65f93d6f9d

View File

@ -9,6 +9,8 @@ namespace osu.Game.Rulesets.Difficulty.Utils
{ {
/// <summary> /// <summary>
/// An indexed queue where items are indexed beginning from the most recently enqueued item. /// An indexed queue where items are indexed beginning from the most recently enqueued item.
/// Enqueuing an item pushes all existing indexes up by one and inserts the item at index 0.
/// Dequeuing an item removes the item from the highest index and returns it.
/// </summary> /// </summary>
public class ReverseQueue<T> : IEnumerable<T> public class ReverseQueue<T> : IEnumerable<T>
{ {