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  
ReadOnlyArrayIterator — class, package org.as3collections.iterators
An iterator to iterate over an Array object.
ReadOnlyArrayIterator(source:Array) — Constructor, class org.as3collections.iterators.ReadOnlyArrayIterator
Constructor, creates a new ReadOnlyArrayIterator object.
ReadOnlyArrayList — class, package org.as3collections.lists
A list that does not allow modifications.
ReadOnlyArrayList(source:Array) — Constructor, class org.as3collections.lists.ReadOnlyArrayList
Constructor, creates a new ReadOnlyArrayList object.
ReadOnlyArrayListMap — class, package org.as3collections.maps
An ArrayListMap that doesn't allow modifications.
ReadOnlyArrayListMap(source:org.as3collections:IMap) — Constructor, class org.as3collections.maps.ReadOnlyArrayListMap
Constructor, creates a new ReadOnlyArrayListMap object.
ReadOnlyHashMap — class, package org.as3collections.maps
A HashMap that doesn't allow modifications.
ReadOnlyHashMap(source:org.as3collections:IMap) — Constructor, class org.as3collections.maps.ReadOnlyHashMap
Constructor, creates a new ReadOnlyHashMap object.
ReadOnlyListIterator — class, package org.as3collections.iterators
An iterator to iterate over lists.
ReadOnlyListIterator(source:org.as3collections:IList, position:int) — Constructor, class org.as3collections.iterators.ReadOnlyListIterator
Constructor, creates a new ReadOnlyListIterator object.
ReadOnlyMapIterator — class, package org.as3collections.iterators
An iterator to iterate over maps (implementations of the IMap interface).
ReadOnlyMapIterator(source:org.as3collections:IMap) — Constructor, class org.as3collections.iterators.ReadOnlyMapIterator
Constructor, creates a new ReadOnlyMapIterator object.
remove(o:any) — method, class org.as3collections.AbstractArrayCollection
Removes a single instance (only one occurrence) of the specified object from this collection, if it is present (optional operation).
remove(key:any) — method, class org.as3collections.AbstractHashMap
Removes the mapping for a key from this map if it is present (optional operation).
remove(key:any) — method, class org.as3collections.AbstractListMap
Removes the mapping for a key from this map if it is present (optional operation).
remove(o:any) — method, interface org.as3collections.ICollection
Removes a single instance (only one occurrence) of the specified object from this collection, if it is present (optional operation).
remove() — method, interface org.as3collections.IIterator
Removes from the underlying collection the last element returned by the iterator (optional operation).
remove(key:any) — method, interface org.as3collections.IMap
Removes the mapping for a key from this map if it is present (optional operation).
remove(o:any) — method, class org.as3collections.TypedCollection
Forwards the call to wrappedCollection.remove.
remove(o:any) — method, class org.as3collections.UniqueCollection
Forwards the call to wrappedCollection.remove.
remove() — method, class org.as3collections.iterators.ArrayIterator
Removes from the underlying collection the last element returned by the iterator (optional operation).
remove() — method, class org.as3collections.iterators.ListIterator
Removes from the list the last element that was returned by next or previous.
remove() — method, class org.as3collections.iterators.ListMapIterator
Removes from the map the last mapping that was returned by next or previous.
remove() — method, class org.as3collections.iterators.MapIterator
Removes from the underlying collection the last element returned by the iterator (optional operation).
remove() — method, class org.as3collections.iterators.ReadOnlyArrayIterator
This implementation always throws an UnsupportedOperationError.
remove() — method, class org.as3collections.iterators.ReadOnlyListIterator
This implementation always throws an UnsupportedOperationError.
remove() — method, class org.as3collections.iterators.ReadOnlyMapIterator
This implementation always throws an UnsupportedOperationError.
remove(o:any) — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
remove(key:any) — method, class org.as3collections.maps.ArrayListMap
Removes the mapping for a key from this map if it is present.
remove(key:any) — method, class org.as3collections.maps.HashMap
Removes the mapping for a key from this map if it is present.
remove(key:any) — method, class org.as3collections.maps.ReadOnlyArrayListMap
This implementation always throws an UnsupportedOperationError.
remove(key:any) — method, class org.as3collections.maps.ReadOnlyHashMap
This implementation always throws an UnsupportedOperationError.
remove(key:any) — method, class org.as3collections.maps.TypedMap
Forwards the call to wrappedMap.remove.
remove(o:any) — method, class org.as3collections.queues.SortedQueue
Removes a single instance (only one occurrence) of the specified object from this queue, if it is present.
removeAll(collection:org.as3collections:ICollection) — method, class org.as3collections.AbstractArrayCollection
Removes all of this collection's elements that are also contained in the specified collection (optional operation).
removeAll(keys:org.as3collections:ICollection) — method, class org.as3collections.AbstractHashMap
Removes the mapping for a key from this map (if it is present) for each element in the specified collection (optional operation).
removeAll(keys:org.as3collections:ICollection) — method, class org.as3collections.AbstractListMap
Removes the mapping for a key from this map (if it is present) for each element in the specified collection (optional operation).
removeAll(collection:org.as3collections:ICollection) — method, interface org.as3collections.ICollection
Removes all elements of this collection that are also contained in the specified collection (optional operation).
removeAll(keys:org.as3collections:ICollection) — method, interface org.as3collections.IMap
Removes the mapping for a key from this map (if it is present) for each element in the specified collection (optional operation).
removeAll(collection:org.as3collections:ICollection) — method, class org.as3collections.TypedCollection
Forwards the call to wrappedCollection.removeAll.
removeAll(collection:org.as3collections:ICollection) — method, class org.as3collections.UniqueCollection
Forwards the call to wrappedCollection.removeAll.
removeAll(collection:org.as3collections:ICollection) — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
removeAll(keys:org.as3collections:ICollection) — method, class org.as3collections.maps.ReadOnlyArrayListMap
This implementation always throws an UnsupportedOperationError.
removeAll(keys:org.as3collections:ICollection) — method, class org.as3collections.maps.ReadOnlyHashMap
This implementation always throws an UnsupportedOperationError.
removeAll(keys:org.as3collections:ICollection) — method, class org.as3collections.maps.TypedMap
Forwards the call to wrappedMap.removeAll.
removeAll(collection:org.as3collections:ICollection) — method, class org.as3collections.queues.SortedQueue
Removes all of this queue's elements that are also contained in the specified collection.
removeAllOccurances(collection:org.as3collections:ICollection, element:any) — Static Method , class org.as3collections.utils.CollectionUtil
Removes all occurances of a the given element argument from the given collection argument.
removeAt(index:int) — method, class org.as3collections.AbstractList
Removes the element at the specified position in this list (optional operation).
removeAt(index:int) — method, class org.as3collections.AbstractListMap
Removes the mapping at the specified position in this map (optional operation).
removeAt(index:int) — method, interface org.as3collections.IList
Removes the element at the specified position in this list (optional operation).
removeAt(index:int) — method, interface org.as3collections.IListMap
Removes the mapping at the specified position in this map (optional operation).
removeAt(index:int) — method, class org.as3collections.lists.ArrayList
Removes the element at the specified position in this list.
removeAt(index:int) — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
removeAt(index:int) — method, class org.as3collections.lists.TypedList
Forwards the call to wrappedList.removeAt.
removeAt(index:int) — method, class org.as3collections.lists.UniqueList
Forwards the call to wrappedList.removeAt.
removeAt(index:int) — method, class org.as3collections.maps.ArrayListMap
Removes the mapping at the specified position in this map (optional operation).
removeAt(index:int) — method, class org.as3collections.maps.TypedListMap
Forwards the call to wrappedMap.removeAt.
removeDuplicate(collection:org.as3collections:ICollection) — Static Method , class org.as3collections.utils.CollectionUtil
Removes duplicated objects.
removeRange(fromIndex:int, toIndex:int) — method, class org.as3collections.AbstractList
Removes all of the elements whose index is between fromIndex, inclusive, and toIndex, exclusive (optional operation).
removeRange(fromIndex:int, toIndex:int) — method, class org.as3collections.AbstractListMap
Removes all of the mappings whose index is between fromIndex, inclusive, and toIndex, exclusive (optional operation).
removeRange(fromIndex:int, toIndex:int) — method, interface org.as3collections.IList
Removes all of the elements whose index is between fromIndex, inclusive, and toIndex, exclusive (optional operation).
removeRange(fromIndex:int, toIndex:int) — method, interface org.as3collections.IListMap
Removes all of the mappings whose index is between fromIndex, inclusive, and toIndex, exclusive (optional operation).
removeRange(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.ArrayList
Removes all of the elements whose index is between fromIndex, inclusive, and toIndex, exclusive.
removeRange(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
removeRange(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.TypedList
Forwards the call to wrappedList.removeRange.
removeRange(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.UniqueList
Forwards the call to wrappedList.removeRange.
removeRange(fromIndex:int, toIndex:int) — method, class org.as3collections.maps.ArrayListMap
Removes all of the mappings whose index is between fromIndex, inclusive, and toIndex, exclusive (optional operation).
removeRange(fromIndex:int, toIndex:int) — method, class org.as3collections.maps.TypedListMap
Forwards the call to wrappedMap.removeRange.
reset() — method, interface org.as3collections.IIterator
Resets the internal pointer of the iterator.
reset() — method, class org.as3collections.iterators.ArrayIterator
Resets the internal pointer of the iterator.
reset() — method, class org.as3collections.iterators.ListIterator
Resets the internal pointer of the iterator.
reset() — method, class org.as3collections.iterators.ListMapIterator
Resets the internal pointer of the iterator.
reset() — method, class org.as3collections.iterators.MapIterator
Resets the internal pointer of the iterator.
retainAll(collection:org.as3collections:ICollection) — method, class org.as3collections.AbstractArrayCollection
Retains only the elements in this collection that are contained in the specified collection (optional operation).
retainAll(keys:org.as3collections:ICollection) — method, class org.as3collections.AbstractHashMap
Retains only the mappings in this map that the keys are contained (as elements) in the specified collection (optional operation).
retainAll(keys:org.as3collections:ICollection) — method, class org.as3collections.AbstractListMap
Retains only the mappings in this map that the keys are contained (as elements) in the specified collection (optional operation).
retainAll(collection:org.as3collections:ICollection) — method, interface org.as3collections.ICollection
Retains only the elements in this collection that are contained in the specified collection (optional operation).
retainAll(keys:org.as3collections:ICollection) — method, interface org.as3collections.IMap
Retains only the mappings in this map that the keys are contained (as elements) in the specified collection (optional operation).
retainAll(collection:org.as3collections:ICollection) — method, class org.as3collections.TypedCollection
Forwards the call to wrappedCollection.retainAll.
retainAll(collection:org.as3collections:ICollection) — method, class org.as3collections.UniqueCollection
Forwards the call to wrappedCollection.retainAll.
retainAll(collection:org.as3collections:ICollection) — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
retainAll(keys:org.as3collections:ICollection) — method, class org.as3collections.maps.ReadOnlyArrayListMap
This implementation always throws an UnsupportedOperationError.
retainAll(keys:org.as3collections:ICollection) — method, class org.as3collections.maps.ReadOnlyHashMap
This implementation always throws an UnsupportedOperationError.
retainAll(keys:org.as3collections:ICollection) — method, class org.as3collections.maps.TypedMap
Forwards the call to wrappedMap.retainAll.
reverse() — method, class org.as3collections.AbstractList
Reverses the order of the elements in this list.
reverse() — method, class org.as3collections.AbstractListMap
Reverses the order of the mappings in this map.
reverse() — method, interface org.as3collections.IList
Reverses the order of the elements in this list.
reverse() — method, interface org.as3collections.IListMap
Reverses the order of the mappings in this map.
reverse() — method, class org.as3collections.lists.ReadOnlyArrayList
This implementation always throws an UnsupportedOperationError.
reverse() — method, class org.as3collections.lists.SortedArrayList
Reverses the list.
reverse() — method, class org.as3collections.lists.TypedList
Forwards the call to wrappedList.reverse.
reverse() — method, class org.as3collections.lists.UniqueList
Forwards the call to wrappedList.reverse.
reverse() — method, class org.as3collections.maps.TypedListMap
Forwards the call to wrappedMap.reverse.
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