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  
peek() — method, class org.as3collections.AbstractQueue
Retrieves, but does not remove, the head of this queue, or returns null if this queue is empty.
peek() — method, interface org.as3collections.IQueue
Retrieves, but does not remove, the head of this queue, or returns null if this queue is empty.
peek() — method, class org.as3collections.queues.LinearQueue
Retrieves, but does not remove, the head of this queue, or returns null if this queue is empty.
peek() — method, class org.as3collections.queues.TypedQueue
Forwards the call to wrappedQueue.peek.
peek() — method, class org.as3collections.queues.UniqueQueue
Forwards the call to wrappedQueue.peek.
pointer() — method, interface org.as3collections.IIterator
Returns the internal pointer of the iteration.
pointer() — method, class org.as3collections.iterators.ArrayIterator
Returns the internal pointer of the iteration.
pointer() — method, class org.as3collections.iterators.ListIterator
Returns the internal pointer of the iteration.
pointer() — method, class org.as3collections.iterators.ListMapIterator
Returns the internal pointer of the iteration.
pointer() — method, class org.as3collections.iterators.MapIterator
Returns the internal pointer of the iteration.
poll() — method, class org.as3collections.AbstractQueue
Retrieves and removes the head of this queue, or returns null if this queue is empty.
poll() — method, interface org.as3collections.IQueue
Retrieves and removes the head of this queue, or returns null if this queue is empty.
poll() — method, class org.as3collections.queues.LinearQueue
Retrieves and removes the head of this queue, or returns null if this queue is empty.
poll() — method, class org.as3collections.queues.SortedQueue
Retrieves and removes the head of this queue, or returns null if this queue is empty.
poll() — method, class org.as3collections.queues.TypedQueue
Forwards the call to wrappedQueue.poll.
poll() — method, class org.as3collections.queues.UniqueQueue
Forwards the call to wrappedQueue.poll.
previous() — method, interface org.as3collections.IListIterator
Returns the previous element in the iteration.
previous() — method, interface org.as3collections.IListMapIterator
Returns the previous mapping in the iteration.
previous() — method, class org.as3collections.iterators.ListIterator
Returns the previous element in the iteration.
previous() — method, class org.as3collections.iterators.ListMapIterator
Returns the previous value in the iteration.
previousIndex() — method, interface org.as3collections.IListIterator
Returns the index of the element that would be returned by a subsequent call to previous.
previousIndex() — method, interface org.as3collections.IListMapIterator
Returns the index of the mapping that would be returned by a subsequent call to previous.
previousIndex() — method, class org.as3collections.iterators.ListIterator
Returns the index of the element that would be returned by a subsequent call to previous.
previousIndex() — method, class org.as3collections.iterators.ListMapIterator
Returns the index of the mapping that would be returned by a subsequent call to previous.
PriorityIndexQueue — class, package org.as3collections.queues
This queue uses an org.as3coreaddendum.system.comparators.PriorityIndexComparator object to sort the elements.
PriorityIndexQueue(source:Array) — Constructor, class org.as3collections.queues.PriorityIndexQueue
Constructor, creates a new IndexablePriorityQueue object.
PriorityQueue — class, package org.as3collections.queues
This queue uses a org.as3coreaddendum.system.comparators.PriorityComparator object to sort the elements.
PriorityQueue(source:Array) — Constructor, class org.as3collections.queues.PriorityQueue
Constructor, creates a new PriorityQueue object.
put(key:any, value:any) — method, class org.as3collections.AbstractHashMap
Associates the specified value with the specified key in this map (optional operation).
put(key:any, value:any) — method, class org.as3collections.AbstractListMap
Associates the specified value with the specified key in this map (optional operation).
put(key:any, value:any) — method, interface org.as3collections.IListMapIterator
Associates the specified value with the specified key in this map.
put(key:any, value:any) — method, interface org.as3collections.IMap
Associates the specified value with the specified key in this map (optional operation).
put(key:any, value:any) — method, class org.as3collections.iterators.ListMapIterator
Associates the specified value with the specified key in this map.
put(key:any, value:any) — method, class org.as3collections.maps.ArrayListMap
Associates the specified value with the specified key in this map.
put(key:any, value:any) — method, class org.as3collections.maps.HashMap
Associates the specified value with the specified key in this map.
put(key:any, value:any) — method, class org.as3collections.maps.ReadOnlyArrayListMap
This implementation always throws an UnsupportedOperationError.
put(key:any, value:any) — method, class org.as3collections.maps.ReadOnlyHashMap
This implementation always throws an UnsupportedOperationError.
put(key:any, value:any) — method, class org.as3collections.maps.SortedArrayListMap
Associates the specified value with the specified key in this map (optional operation).
put(key:any, value:any) — method, class org.as3collections.maps.TypedMap
The key and value are validated with the validateKeyType and validateValueType methods to be forwarded to wrappedMap.put.
putAll(map:org.as3collections:IMap) — method, class org.as3collections.AbstractHashMap
Copies all of the mappings from the specified map to this map (optional operation).
putAll(map:org.as3collections:IMap) — method, class org.as3collections.AbstractListMap
Copies all of the mappings from the specified map to this map (optional operation).
putAll(map:org.as3collections:IMap) — method, interface org.as3collections.IMap
Copies all of the mappings from the specified map to this map (optional operation).
putAll(map:org.as3collections:IMap) — method, class org.as3collections.maps.ReadOnlyArrayListMap
This implementation always throws an UnsupportedOperationError.
putAll(map:org.as3collections:IMap) — method, class org.as3collections.maps.ReadOnlyHashMap
This implementation always throws an UnsupportedOperationError.
putAll(map:org.as3collections:IMap) — method, class org.as3collections.maps.TypedMap
The map is validated with the validateMap method to be forwarded to wrappedMap.putAll.
putAllAt(index:int, map:org.as3collections:IMap) — method, class org.as3collections.AbstractListMap
Copies all of the mappings from the specified map to this map (optional operation).
putAllAt(index:int, map:org.as3collections:IMap) — method, interface org.as3collections.IListMap
Copies all of the mappings from the specified map to this map (optional operation).
putAllAt(index:int, map:org.as3collections:IMap) — method, class org.as3collections.maps.TypedListMap
The map is validated to be forwarded to wrappedMap.putAllAt.
putAllByObject(o:Object) — method, class org.as3collections.AbstractHashMap
This implementation performs a for..in in the specified object, calling put on this map once for each iteration (optional operation).
putAllByObject(o:Object) — method, class org.as3collections.AbstractListMap
This implementation performs a for..in in the specified object, calling put on this map once for each iteration (optional operation).
putAllByObject(o:Object) — method, interface org.as3collections.IMap
Retrieves each property of the specified object, calling put on this map once for each property (optional operation).
putAllByObject(o:Object) — method, class org.as3collections.maps.ReadOnlyArrayListMap
This implementation always throws an UnsupportedOperationError.
putAllByObject(o:Object) — method, class org.as3collections.maps.ReadOnlyHashMap
This implementation always throws an UnsupportedOperationError.
putAllByObject(o:Object) — method, class org.as3collections.maps.TypedMap
The objects is validated to be forwarded to wrappedMap.putAllByObject.
putAt(index:int, key:any, value:any) — method, class org.as3collections.AbstractListMap
Associates the specified value with the specified key at the specified position in this map (optional operation).
putAt(index:int, key:any, value:any) — method, interface org.as3collections.IListMap
Associates the specified value with the specified key at the specified position in this map (optional operation).
putAt(index:int, key:any, value:any) — method, class org.as3collections.maps.ArrayListMap
Associates the specified value with the specified key at the specified position in this map.
putAt(index:int, key:any, value:any) — method, class org.as3collections.maps.SortedArrayListMap
Associates the specified value with the specified key at the specified position in this map (optional operation).
putAt(index:int, key:any, value:any) — method, class org.as3collections.maps.TypedListMap
The key and value are validated to be forwarded to wrappedMap.putAt.
putEntry(entry:org.as3collections:IMapEntry) — method, class org.as3collections.AbstractHashMap
Associates the specified entry.value with the specified entry.key in this map (optional operation).
putEntry(entry:org.as3collections:IMapEntry) — method, class org.as3collections.AbstractListMap
Associates the specified entry.value with the specified entry.key in this map (optional operation).
putEntry(entry:org.as3collections:IMapEntry) — method, interface org.as3collections.IMap
Associates the specified entry.value with the specified entry.key in this map (optional operation).
putEntry(entry:org.as3collections:IMapEntry) — method, class org.as3collections.maps.ReadOnlyArrayListMap
This implementation always throws an UnsupportedOperationError.
putEntry(entry:org.as3collections:IMapEntry) — method, class org.as3collections.maps.ReadOnlyHashMap
This implementation always throws an UnsupportedOperationError.
putEntry(entry:org.as3collections:IMapEntry) — method, class org.as3collections.maps.TypedMap
The entry is validated with the validateKeyType and validateValueType methods to be forwarded to wrappedMap.putEntry.
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