S.NO | Method Name | Purpose |
---|---|---|
1 | Count | Returns the number of components that a set contains |
2 | Exists | Returns the output as true if the set exists, else, returns false |
3 | First | Returns the smallest index number first |
4 | Limit | Checks the maximum size of the set |
5 | Last | Returns the largest index first |
6 | Next | Returns the index number that succeeds the index 'n' |
7 | Prior | Returns the index number followed by the nth index |
8 | Extend(n) | Affix 'n' null elements to a set |
9 | Extend | Affix one null element to a set |
10 | Trim(n) | Deletes 'n' elements from the end of a collection |
11 | Trim | Deletes 'n' components from the end of a set |
12 | Delete(n) | Deletes the nth component from an associate array |
13 | Delete | Deletes all components from the set, setting count to 0 |