mirror of
https://github.com/ppy/osu
synced 2024-12-30 10:52:30 +00:00
Add more descriptive xmldoc for ReverseQueue
This commit is contained in:
parent
ffe7edc16a
commit
65f93d6f9d
@ -9,6 +9,8 @@ namespace osu.Game.Rulesets.Difficulty.Utils
|
||||
{
|
||||
/// <summary>
|
||||
/// 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>
|
||||
public class ReverseQueue<T> : IEnumerable<T>
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user