Packagesystem.data
Interfacepublic interface Set extends Collection, Cloneable, Iterable, Serializable
Implementors ArraySet, CoreSet, HashSet, TypedSet

A collection that contains no duplicate elements.



Public Methods
 MethodDefined By
 Inherited
add(o:*):Boolean
Ensures that this collection contains the specified element (optional operation).
Collection
 Inherited
clear():void
Removes all of the elements from this collection (optional operation).
Collection
 Inherited
clone():*
Creates and returns a shallow copy of the object.
Cloneable
 Inherited
contains(o:*):Boolean
Returns true if this collection contains the specified element.
Collection
 Inherited
get(key:*):*
Returns the element from this collection at the passed index.
Collection
 Inherited
indexOf(o:*, fromIndex:uint = 0):int
Returns the position of the passed object in the collection.
Collection
 Inherited
isEmpty():Boolean
Returns true if this collection contains no elements.
Collection
 Inherited
Returns the iterator reference of the object.
Iterable
 Inherited
remove(o:*):*
Removes a single instance of the specified element from this collection, if it is present (optional operation).
Collection
 Inherited
size():uint
Retrieves the number of elements in this collection.
Collection
 Inherited
toArray():Array
Returns an array containing all of the elements in this collection.
Collection
 Inherited
toSource(indent:int = 0):String
Returns the source code string representation of the object.
Serializable