Count: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m Logic fix. |
||
| Line 21: | Line 21: | ||
code= | code= | ||
<syntaxhighlight> | <syntaxhighlight> | ||
item [int] | item [int] map; | ||
boolean newkey(item i) { | boolean newkey(item i) { | ||
map[count(map)] = i; | map[count(map)] = i; | ||
Latest revision as of 03:50, 7 July 2010
Function Syntax
Returns the number of keys in the specified aggregate.
Code Samples
This example function uses count to create a new key in a map (defined outside the function to hopefully eliminate some confusion).
item [int] map;
boolean newkey(item i) {
map[count(map)] = i;
}See Also
Special
This function returns 0 for an empty map (i.e. with 0 keys).