Queue<T>
Overview
Queue implementation. Values queued first, are dequeued first.
Location
- Reference: Island.fx
- Namespace: RemObjects.Elements.System
constructor
constructor
Queue<T>()
init()
Queue<T>()
Sub New()
Clear
method Clear
void Clear()
func Clear()
void Clear()
Sub Clear()
Contains
Check if thsi queue contains a value.
method Contains(aItem: T): Boolean
Boolean Contains(T aItem)
func Contains(_ aItem: T) -> Boolean
Boolean Contains(T aItem)
Function Contains(aItem As T) As Boolean
Parameters:
- aItem:
Count
Returns the number of elements in this queue.
property Count: Int32 read;
Int32 Count { get; }
var Count: Int32 { get{} }
Int32 Count { __get; }
ReadOnly Property Count() As Int32
Dequeue
Dequeue a value from the queue.
method Dequeue: T
T Dequeue()
func Dequeue() -> T
T Dequeue()
Function Dequeue() As T
Enqueue
method Enqueue(aItem: T)
void Enqueue(T aItem)
func Enqueue(_ aItem: T)
void Enqueue(T aItem)
Sub Enqueue(aItem As T)
Parameters:
- aItem:
Equals virtual (declared in Object)
Default constructor.
method Equals(aOther: Object): Boolean
Boolean Equals(Object aOther)
func Equals(_ aOther: Object) -> Boolean
Boolean Equals(Object aOther)
Function Equals(aOther As Object) As Boolean
Parameters:
- aOther: the reference to compare this with.
Finalize protected virtual (declared in Object)
method Finalize
void Finalize()
func Finalize()
void Finalize()
Sub Finalize()
GetEnumerator
Itterate all values.
method GetEnumerator: IEnumerator<T>
IEnumerator<T> GetEnumerator()
func GetEnumerator() -> IEnumerator<T>
IEnumerator<T> GetEnumerator()
Function GetEnumerator() As IEnumerator<T>
GetHashCode virtual (declared in Object)
Returns a hashcode for this object. Overriden implementations should make sure that the number returned here is constant given the same object.
method GetHashCode: Int32
Int32 GetHashCode()
func GetHashCode() -> Int32
Int32 GetHashCode()
Function GetHashCode() As Int32
GetType (declared in Object)
Returns the actual type of this class
method GetType: Type
Type GetType()
func GetType() -> Type
Type GetType()
Function GetType() As Type
Peek
Look at the next value without removing it.
method Peek: T
T Peek()
func Peek() -> T
T Peek()
Function Peek() As T
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
class method ReferenceEquals(a: Object; b: Object): Boolean
static Boolean ReferenceEquals(Object a, Object b)
static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean
static Boolean ReferenceEquals(Object a, Object b)
Shared Function ReferenceEquals(a As Object, b As Object) As Boolean
Parameters:
- a: left value
- b: right value
ToArray
Converts tihs queue to an array.
method ToArray: array of T
T[] ToArray()
func ToArray() -> T...
T[] ToArray()
Function ToArray() As T()
ToString virtual (declared in Object)
Gets the string representation of this method.
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String
Count
Returns the number of elements in this queue.
property Count: Int32 read;
Int32 Count { get; }
var Count: Int32 { get{} }
Int32 Count { __get; }
ReadOnly Property Count() As Int32
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
class method ReferenceEquals(a: Object; b: Object): Boolean
static Boolean ReferenceEquals(Object a, Object b)
static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean
static Boolean ReferenceEquals(Object a, Object b)
Shared Function ReferenceEquals(a As Object, b As Object) As Boolean
Parameters:
- a: left value
- b: right value
constructor
constructor
Queue<T>()
init()
Queue<T>()
Sub New()
Clear
method Clear
void Clear()
func Clear()
void Clear()
Sub Clear()
Contains
Check if thsi queue contains a value.
method Contains(aItem: T): Boolean
Boolean Contains(T aItem)
func Contains(_ aItem: T) -> Boolean
Boolean Contains(T aItem)
Function Contains(aItem As T) As Boolean
Parameters:
- aItem:
Dequeue
Dequeue a value from the queue.
method Dequeue: T
T Dequeue()
func Dequeue() -> T
T Dequeue()
Function Dequeue() As T
Enqueue
method Enqueue(aItem: T)
void Enqueue(T aItem)
func Enqueue(_ aItem: T)
void Enqueue(T aItem)
Sub Enqueue(aItem As T)
Parameters:
- aItem:
Equals virtual (declared in Object)
Default constructor.
method Equals(aOther: Object): Boolean
Boolean Equals(Object aOther)
func Equals(_ aOther: Object) -> Boolean
Boolean Equals(Object aOther)
Function Equals(aOther As Object) As Boolean
Parameters:
- aOther: the reference to compare this with.
Finalize protected virtual (declared in Object)
method Finalize
void Finalize()
func Finalize()
void Finalize()
Sub Finalize()
GetEnumerator
Itterate all values.
method GetEnumerator: IEnumerator<T>
IEnumerator<T> GetEnumerator()
func GetEnumerator() -> IEnumerator<T>
IEnumerator<T> GetEnumerator()
Function GetEnumerator() As IEnumerator<T>
GetHashCode virtual (declared in Object)
Returns a hashcode for this object. Overriden implementations should make sure that the number returned here is constant given the same object.
method GetHashCode: Int32
Int32 GetHashCode()
func GetHashCode() -> Int32
Int32 GetHashCode()
Function GetHashCode() As Int32
GetType (declared in Object)
Returns the actual type of this class
method GetType: Type
Type GetType()
func GetType() -> Type
Type GetType()
Function GetType() As Type
Peek
Look at the next value without removing it.
method Peek: T
T Peek()
func Peek() -> T
T Peek()
Function Peek() As T
ToArray
Converts tihs queue to an array.
method ToArray: array of T
T[] ToArray()
func ToArray() -> T...
T[] ToArray()
Function ToArray() As T()
ToString virtual (declared in Object)
Gets the string representation of this method.
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String
- IEnumerable<T>