IList<T>
Overview
Generic list interface.
Location
- Reference: Island.fx
- Namespace: RemObjects.Elements.System
Implemented in
Implements
constructor (declared in Object)
constructor
IList<T>()
init()
IList<T>()
Sub New()
Add
method Add(val: T)
void Add(T val)
func Add(_ val: T)
void Add(T val)
Sub Add(val As T)
Parameters:
- val:
Clear
method Clear
void Clear()
func Clear()
void Clear()
Sub Clear()
Contains
returns true if this list contains this value.
method Contains(val: T): Boolean
Boolean Contains(T val)
func Contains(_ val: T) -> Boolean
Boolean Contains(T val)
Function Contains(val As T) As Boolean
Parameters:
- val:
Equals virtual (declared in Object)
Parameters:
- aOther:
Finalize protected virtual (declared in Object)
method Finalize
void Finalize()
func Finalize()
void Finalize()
Sub Finalize()
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
Item
Access a value by index.
property Item[i: Int32]: T read write;
T Item[Int32 i] { get; set; }
subscript Item(_ i: Int32) -> T { get{} set{} }
T Item[Int32 i] { __get; __set; }
Property Item(i As Int32) As T
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
Parameters:
- a: left value
- b: right value
Remove
removes an item from list, implementations that don't support this should throw.
method Remove(val: T): Boolean
Boolean Remove(T val)
func Remove(_ val: T) -> Boolean
Boolean Remove(T val)
Function Remove(val As T) As Boolean
Parameters:
- val:
ToString virtual (declared in Object)
Gets the string representation of this method.
Item
Access a value by index.
constructor (declared in Object)
constructor
IList<T>()
init()
IList<T>()
Sub New()
Add
method Add(val: T)
void Add(T val)
func Add(_ val: T)
void Add(T val)
Sub Add(val As T)
Parameters:
- val:
Clear
method Clear
void Clear()
func Clear()
void Clear()
Sub Clear()
Contains
returns true if this list contains this value.
method Contains(val: T): Boolean
Boolean Contains(T val)
func Contains(_ val: T) -> Boolean
Boolean Contains(T val)
Function Contains(val As T) As Boolean
Parameters:
- val:
Equals virtual (declared in Object)
Parameters:
- aOther:
Finalize protected virtual (declared in Object)
method Finalize
void Finalize()
func Finalize()
void Finalize()
Sub Finalize()
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
Remove
removes an item from list, implementations that don't support this should throw.
method Remove(val: T): Boolean
Boolean Remove(T val)
func Remove(_ val: T) -> Boolean
Boolean Remove(T val)
Function Remove(val As T) As Boolean
Parameters:
- val:
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
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
Parameters:
- a: left value
- b: right value