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  
ICollection — Interface, package org.as3collections
The root interface in the collection hierarchy.
IIterable — Interface, package org.as3collections
Implementing this interface allows an object to be iterable.
IIterator — Interface, package org.as3collections
An iterator over a collection.
IList — Interface, package org.as3collections
An ordered collection.
IListIterator — Interface, package org.as3collections
An iterator for lists that allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator's current position in the list.
IListMap — Interface, package org.as3collections
An ordered map.
IListMapIterator — Interface, package org.as3collections
An iterator for maps that allows the programmer to traverse the map in either direction, modify the map during iteration, and obtain the iterator's current position in the map.
IMap — Interface, package org.as3collections
An object that maps keys to values.
IMapEntry — Interface, package org.as3collections
A map entry (key-value pair).
indexOf(element:any, fromIndex:int) — method, class org.as3collections.AbstractList
Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.
indexOf(element:any, fromIndex:int) — method, interface org.as3collections.IList
Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.
indexOf(element:any, fromIndex:int) — method, class org.as3collections.lists.TypedList
Forwards the call to wrappedList.indexOf.
indexOf(element:any, fromIndex:int) — method, class org.as3collections.lists.UniqueList
Forwards the call to wrappedList.indexOf.
indexOfKey(key:any) — method, class org.as3collections.AbstractListMap
Returns the position of the specified key.
indexOfKey(key:any) — method, interface org.as3collections.IListMap
Returns the index of the first occurrence of the specified key in this map, or -1 if this map does not contain the key.
indexOfKey(key:any) — method, class org.as3collections.maps.TypedListMap
Forwards the call to wrappedMap.indexOfKey.
indexOfValue(value:any) — method, class org.as3collections.AbstractListMap
Returns the position of the specified value.
indexOfValue(value:any) — method, interface org.as3collections.IListMap
Returns the index of the first occurrence of the specified value in this map, or -1 if this map does not contain the value.
indexOfValue(value:any) — method, class org.as3collections.maps.TypedListMap
Forwards the call to wrappedMap.indexOfValue.
IndexOutOfBoundsError — class, package org.as3collections.errors
The error that is thrown to indicate that an index of some sort (such as to an array) is out of range.
IndexOutOfBoundsError(message:String) — Constructor, class org.as3collections.errors.IndexOutOfBoundsError
Constructor, creates a new IndexOutOfBoundsError instance.
IndexQueue — class, package org.as3collections.queues
This queue uses a org.as3coreaddendum.system.comparators.IndexComparator object to sort the elements.
IndexQueue(source:Array) — Constructor, class org.as3collections.queues.IndexQueue
Constructor, creates a new IndexQueue object.
IQueue — Interface, package org.as3collections
A collection designed for holding elements prior to processing.
isEmpty() — method, class org.as3collections.AbstractArrayCollection
Returns true if this collection contains no elements.
isEmpty() — method, class org.as3collections.AbstractHashMap
Returns true if this map contains no key-value mappings.
isEmpty() — method, class org.as3collections.AbstractListMap
Returns true if this map contains no key-value mappings.
isEmpty() — method, interface org.as3collections.ICollection
Returns true if this collection contains no elements.
isEmpty() — method, interface org.as3collections.IMap
Returns true if this map contains no key-value mappings.
isEmpty() — method, class org.as3collections.TypedCollection
Forwards the call to wrappedCollection.isEmpty.
isEmpty() — method, class org.as3collections.UniqueCollection
Forwards the call to wrappedCollection.isEmpty.
isEmpty() — method, class org.as3collections.maps.TypedMap
Forwards the call to wrappedMap.isEmpty.
ISortedList — Interface, package org.as3collections
A list that provides a total ordering on its elements.
ISortedMap — Interface, package org.as3collections
A map that provides a total ordering on its mappings, sorting by keys or values.
ISortedQueue — Interface, package org.as3collections
A queue that provides a total ordering on its elements.
iterator() — method, class org.as3collections.AbstractArrayCollection
Returns an iterator over a set of elements.
iterator() — method, class org.as3collections.AbstractHashMap
Returns an iterator over a set of mappings.
iterator() — method, class org.as3collections.AbstractListMap
Returns an iterator over a set of mappings.
iterator() — method, interface org.as3collections.IIterable
Returns an iterator over a set of elements.
iterator() — method, class org.as3collections.TypedCollection
Forwards the call to wrappedCollection.iterator.
iterator() — method, class org.as3collections.UniqueCollection
Forwards the call to wrappedCollection.iterator.
iterator() — method, class org.as3collections.lists.ArrayList
Returns an iterator over a set of elements.
iterator() — method, class org.as3collections.lists.ReadOnlyArrayList
Returns an iterator over a set of elements.
iterator() — method, class org.as3collections.maps.ArrayListMap
Returns an iterator over a set of mappings.
iterator() — method, class org.as3collections.maps.HashMap
Returns an iterator over a set of mappings.
iterator() — method, class org.as3collections.maps.ReadOnlyArrayListMap
Returns an iterator over a set of mappings.
iterator() — method, class org.as3collections.maps.ReadOnlyHashMap
Returns an iterator over a set of mappings.
iterator() — method, class org.as3collections.maps.TypedMap
Forwards the call to wrappedMap.iterator.
iterator() — method, class org.as3collections.queues.LinearQueue
Returns an iterator over a set of elements.
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