Arraylist methods syntax

From m204wiki
Revision as of 23:15, 19 January 2011 by Wiccan (talk | contribs) (Automatically generated page update)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The syntax for each of the Arraylist class methods is shown below.

Square brackets indicate optional elements of the method invocation. See also the notation conventions for methods and the List of Arraylist methods.

[%count=] al:Add( collectionItem)

al:Audit( method, [NumWidth= numWidth], [Separator= separator], - [Start= start], [MaxItems= maxItems], [Label= label])

%average= al:Average( method)

%copyList= al:Copy

%count= al:Count

%count= al:CountSubset( selectionCriterion)

%copyList= al:DeepCopy

[%item=] al:Dequeue

[%count=] al:Enqueue( collectionItem)

%item= al:FindNextItem( selectionCriterion, [Start= start])

%number= al:FindNextItemNumber( selectionCriterion, [Start= start])

%item= al:FindPreviousItem( selectionCriterion, [Start= start])

%number= al:FindPreviousItemNumber( selectionCriterion, [Start= start])

%item= al:FirstItem

[%count=] al:Insert( number, collectionItem)

%item= al:Item( number)

%item= al:LastItem

%newList= %(Arraylist):List( list)

%number= al:Maximum( method)

%item= al:MaximumItem( method)

%number= al:Minimum( method)

%item= al:MinimumItem( method)

[%item=] al:Pop

al:Print( method, [NumWidth= numWidth], [Separator= separator], - [Start= start], [MaxItems= maxItems], [Label= label])

[%count=] al:Push( collectionItem)

[%count=] al:RemoveItem( number)

al:Sort( sortOrder)

%newList= al:SortNew( sortOrder)

%standardDev= al:StandardDeviation( method)

%newList= al:SubsetNew( selectionCriterion)

%sum= al:Sum( method)

al:Trace( method, [NumWidth= numWidth], [Separator= separator], - [Start= start], [MaxItems= maxItems], [Label= label])

%variance= al:Variance( method)