Packagesekati.collections
Interfacepublic interface ICollection
SubinterfacesIQueue, IStack
ImplementorsArrayCollection, DisplayListCollection

ICollection defines an object which represents a collection of objects.



Public Properties
 PropertyDefined by
  count : uint
[read-only] How many items exist within the collection.
ICollection
  isEmpty : Boolean
[read-only] Whether or not this collection is empty.
ICollection
Public Methods
 MethodDefined by
  
clear():void
Removes all items from the collection.
ICollection
  
The iterator used to handle going through the collection.
ICollection
Property detail
countproperty
count:uint  [read-only]

How many items exist within the collection.

Implementation
    public function get count():uint
isEmptyproperty 
isEmpty:Boolean  [read-only]

Whether or not this collection is empty.

Implementation
    public function get isEmpty():Boolean
Method detail
clear()method
public function clear():void

Removes all items from the collection.

getIterator()method 
public function getIterator():IIterator

The iterator used to handle going through the collection.

Returns
IIterator