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:
parent
ffe7edc16a
commit
65f93d6f9d
@ -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>
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user