Stack<T>
Overview
Stack implementation. Values pushed last are returned first.
Location
- Reference: Island.fx
- Namespace: RemObjects.Elements.System
constructor
constructor
Stack<T>()
init()
Stack<T>()
Sub New()
Clear
method Clear
void Clear()
func Clear()
void Clear()
Sub Clear()
Contains
Returns if this stack 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 nr of elements in this stack.
property Count: Int32 read;
Int32 Count { get; }
var Count: Int32 { get{} }
Int32 Count { __get; }
ReadOnly Property Count() As Int32
Equals virtual (declared in Object)
Default constructor.
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
Returns an iterator over all elements in this stack.
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
Returns but does not remove the next item.
method Peek: T
T Peek()
func Peek() -> T
T Peek()
Function Peek() As T
Pop
Returns and removes the next item.
method Pop: T
T Pop()
func Pop() -> T
T Pop()
Function Pop() As T
Push
method Push(aItem: T)
void Push(T aItem)
func Push(_ aItem: T)
void Push(T aItem)
Sub Push(aItem As T)
Parameters:
- aItem:
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
Parameters:
- a: left value
- b: right value
ToArray
Converts this 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.
Count
Returns the nr of elements in this stack.
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
Parameters:
- a: left value
- b: right value
constructor
constructor
Stack<T>()
init()
Stack<T>()
Sub New()
Clear
method Clear
void Clear()
func Clear()
void Clear()
Sub Clear()
Contains
Returns if this stack 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:
Equals virtual (declared in Object)
Default constructor.
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
Returns an iterator over all elements in this stack.
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
Returns but does not remove the next item.
method Peek: T
T Peek()
func Peek() -> T
T Peek()
Function Peek() As T
Pop
Returns and removes the next item.
method Pop: T
T Pop()
func Pop() -> T
T Pop()
Function Pop() As T
Push
method Push(aItem: T)
void Push(T aItem)
func Push(_ aItem: T)
void Push(T aItem)
Sub Push(aItem As T)
Parameters:
- aItem:
ToArray
Converts this 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.
- IEnumerable<T>