HashSet

HashSet

new HashSet()

Source:
Throws:
- Expected .
Type
Error.<ArgumentException>

Extends

Classes

HashSet

Members

(readonly) Count

Source:
Inherited From:
. Get the Number of items in the list

Methods

Add(value)

Source:
Inherited From:
. Add a Value to the List
Parameters:
Name Type Description
value T

AddRange(list)

Source:
Inherited From:
. Concat 2 Lists
Parameters:
Name Type Description
list List.<T>

Any(action)

Source:
Inherited From:
. Not Yet Implimented
Parameters:
Name Type Description
action function

Clear()

Source:
Inherited From:
. Clear the List

Contains(item) → {Boolean}

Source:
Inherited From:
. Does the List contain a given item
Parameters:
Name Type Description
item T
Returns:
Contains
Type
Boolean

Exists()

Source:
Inherited From:
. Not Yet Implimented

Find(match)

Source:
Inherited From:
. Not Properly Implimented
Parameters:
Name Type Description
match *

ForEach(action)

Source:
Inherited From:
Not Properly Implimented.
Parameters:
Name Type Description
action *

Remove(iValue) → {Number}

Source:
Inherited From:
. Remove an item from the List
Parameters:
Name Type Description
iValue T
Returns:
Index Removed From
Type
Number

RemoveAt(iIndex) → {T}

Source:
Inherited From:
. Remove Item at Index
Parameters:
Name Type Description
iIndex Number
Returns:
Removed Item
Type
T

Sort(compareFn)

Source:
Inherited From:
. Not Yet Implimented
Parameters:
Name Type Description
compareFn

TakeRandom() → {T}

Source:
Inherited From:
. Take a random item from the list
Returns:
Item
Type
T

ToArray()

Source:
Inherited From:
. Not Yet Implimented

TryGetValue(value, out) → {Boolean}

Source:
Inherited From:
. Attempt to get Value
Parameters:
Name Type Description
value T
out Out.<T>
Returns:
Value Found
Type
Boolean