Class QueueExtensions
System.Collections.Generic.Queue<T> extensions.
Inheritance
System.Object
QueueExtensions
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Exiled.API.Extensions
Assembly: Exiled.API.dll
Syntax
public static class QueueExtensions
Methods
| Improve this Doc View SourceRemoveFromQueue<T>(Queue<T>, T)
Removes a specific value from a queue.
Declaration
public static void RemoveFromQueue<T>(this Queue<T> queue, T data)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.Queue<T> | queue | The System.Collections.Generic.Queue<T> to remove from. |
T | data | The item to remove. |
Type Parameters
Name | Description |
---|---|
T | The System.Type of data used. |