A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
AbstractArrayCollection — class, package org.as3collections
This class provides a skeletal implementation of the ICollection interface, to minimize the effort required to implement this interface.
AbstractArrayCollection(source:Array) — Constructor, class org.as3collections.AbstractArrayCollection
This is an abstract class and shouldn't be instantiated directly.
AbstractHashMap — class, package org.as3collections
This class provides a skeletal hash table based implementation of the IMap interface, to minimize the effort required to implement this interface.
AbstractHashMap(source:org.as3collections:IMap, weakKeys:Boolean) — Constructor, class org.as3collections.AbstractHashMap
Constructor, creates a new AbstractHashMap object.
AbstractList — class, package org.as3collections
This class provides a skeletal implementation of the IList interface, to minimize the effort required to implement this interface.
AbstractList(source:Array) — Constructor, class org.as3collections.AbstractList
This is an abstract class and shouldn't be instantiated directly.
AbstractListMap — class, package org.as3collections
This class provides a skeletal implementation of the IListMap interface, to minimize the effort required to implement this interface.
AbstractListMap(source:org.as3collections:IMap) — Constructor, class org.as3collections.AbstractListMap
Constructor, creates a new AbstractListMap object.
AbstractQueue — class, package org.as3collections
This class provides skeletal implementations of some IQueue operations.
AbstractQueue(source:Array) — Constructor, class org.as3collections.AbstractQueue
Constructor, creates a new AbstractQueue object.
add(element:any) — method, class org.as3collections.AbstractArrayCollection
Ensures that this collection contains the specified element (optional operation).
add(element:any) — method, class org.as3collections.AbstractList
Appends the specified element to the end of this list (optional operation).
add(element:any) — method, class org.as3collections.AbstractQueue
Inserts the specified element into this queue if it is possible to do so immediately without violating restrictions.
add(element:any) — method, interface org.as3collections.ICollection
Ensures that this collection contains the specified element (optional operation).
add(element:any) — method, interface org.as3collections.IListIterator
Inserts the specified element into the list (optional operation).
add(element:any) — method, class org.as3collections.TypedCollection
The element is validated with the validateType method to be forwarded to wrappedCollection.add.
add(element:any) — method, class org.as3collections.UniqueCollection
If wrappedCollection.contains(element) returns true, then this method returns false.
add(element:any) — method, class org.as3collections.iterators.ListIterator
Inserts the specified element into the list (optional operation).
add(element:any) — method, class org.as3collections.iterators.ReadOnlyListIterator
This implementation always throws an UnsupportedOperationError.
add(element:any) — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
add(element:any) — method, class org.as3collections.queues.IndexQueue
Inserts the specified element into this queue if it is possible to do so immediately without violating restrictions.
add(element:any) — method, class org.as3collections.queues.PriorityIndexQueue
Inserts the specified element into this queue if it is possible to do so immediately without violating restrictions.
add(element:any) — method, class org.as3collections.queues.PriorityQueue
Inserts the specified element into this queue if it is possible to do so immediately without violating restrictions.
add(element:any) — method, class org.as3collections.queues.TypedQueue
If the element argument is null throws ArgumentError.
add(element:any) — method, class org.as3collections.queues.UniqueQueue
Inserts the specified element into this queue if it is possible to do so immediately without violating restrictions.
addAll(collection:org.as3collections:ICollection) — method, class org.as3collections.AbstractArrayCollection
Adds all of the elements in the specified collection to this collection (optional operation).
addAll(collection:org.as3collections:ICollection) — method, class org.as3collections.AbstractList
Adds all of the elements in the specified collection to this list (optional operation).
addAll(collection:org.as3collections:ICollection) — method, interface org.as3collections.ICollection
Adds all of the elements in the specified collection to this collection (optional operation).
addAll(collection:org.as3collections:ICollection) — method, class org.as3collections.TypedCollection
The collection is validated with the validateCollection method to be forwarded to wrappedCollection.addAll.
addAll(collection:org.as3collections:ICollection) — method, class org.as3collections.UniqueCollection
If the specified collection is empty returns false.
addAll(collection:org.as3collections:ICollection) — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
addAllAt(index:int, collection:org.as3collections:ICollection) — method, class org.as3collections.AbstractList
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
addAllAt(index:int, collection:org.as3collections:ICollection) — method, interface org.as3collections.IList
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
addAllAt(index:int, collection:org.as3collections:ICollection) — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
addAllAt(index:int, collection:org.as3collections:ICollection) — method, class org.as3collections.lists.TypedList
The collection is validated to be forwarded to wrappedList.addAllAt.
addAllAt(index:int, collection:org.as3collections:ICollection) — method, class org.as3collections.lists.UniqueList
If the specified collection is empty returns false.
addAt(index:int, element:any) — method, class org.as3collections.AbstractList
Inserts the specified element at the specified position in this list (optional operation).
addAt(index:int, element:any) — method, interface org.as3collections.IList
Inserts the specified element at the specified position in this list (optional operation).
addAt(index:int, element:any) — method, class org.as3collections.lists.ArrayList
Inserts the specified element at the specified position in this list.
addAt(index:int, element:any) — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
addAt(index:int, element:any) — method, class org.as3collections.lists.SortedArrayList
Inserts the specified element at the specified position in this list.
addAt(index:int, element:any) — method, class org.as3collections.lists.TypedList
The element is validated to be forwarded to wrappedList.addAt.
addAt(index:int, element:any) — method, class org.as3collections.lists.UniqueList
If wrappedList.contains(element) returns true then returns false.
allEquatable — Property, class org.as3collections.AbstractArrayCollection
Indicates whether all elements in this collection implement the interface org.as3coreaddendum.system.IEquatable.
allEquatable — Property, interface org.as3collections.ICollection
Indicates whether all elements in this collection implement the interface org.as3coreaddendum.system.IEquatable.
allEquatable — Property, class org.as3collections.TypedCollection
Indicates whether all elements in this collection implement the interface org.as3coreaddendum.system.IEquatable.
allEquatable — Property, class org.as3collections.UniqueCollection
Indicates whether all elements in this collection implement the interface org.as3coreaddendum.system.IEquatable.
allKeysEquatable — Property, class org.as3collections.AbstractHashMap
Indicates whether all keys in this map implements org.as3coreaddendum.system.IEquatable interface.
allKeysEquatable — Property, class org.as3collections.AbstractListMap
Indicates whether all keys in this map implements org.as3coreaddendum.system.IEquatable interface.
allKeysEquatable — Property, interface org.as3collections.IMap
Indicates whether all keys in this map implements org.as3coreaddendum.system.IEquatable interface.
allKeysEquatable — Property, class org.as3collections.maps.TypedMap
Indicates whether all keys in this map implements org.as3coreaddendum.system.IEquatable interface.
allValuesEquatable — Property, class org.as3collections.AbstractHashMap
Indicates whether all values in this map implements org.as3coreaddendum.system.IEquatable interface.
allValuesEquatable — Property, class org.as3collections.AbstractListMap
Indicates whether all values in this map implements org.as3coreaddendum.system.IEquatable interface.
allValuesEquatable — Property, interface org.as3collections.IMap
Indicates whether all values in this map implements org.as3coreaddendum.system.IEquatable interface.
allValuesEquatable — Property, class org.as3collections.maps.TypedMap
Indicates whether all values in this map implements org.as3coreaddendum.system.IEquatable interface.
ArrayIterator — class, package org.as3collections.iterators
An iterator to iterate over an Array object.
ArrayIterator(source:Array) — Constructor, class org.as3collections.iterators.ArrayIterator
Constructor, creates a new ArrayIterator object.
ArrayList — class, package org.as3collections.lists
Resizable-array implementation of the IList interface.
ArrayList(source:Array) — Constructor, class org.as3collections.lists.ArrayList
Constructor, creates a new ArrayList object.
ArrayListMap — class, package org.as3collections.maps
Array based implementation of the IMap interface.
ArrayListMap(source:org.as3collections:IMap) — Constructor, class org.as3collections.maps.ArrayListMap
Constructor, creates a new ArrayListMap object.
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z