Script Classes for Adventure Games/Set Class
From SCI Wiki
Revision as of 03:09, 9 December 2015 by Andrew Branscom (talk | contribs)
Chapter:
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
The Set Class
A Set is a kind of List which does not contain duplicate elements: adding an object to a Set
which already contains the object does not change the Set.
In file: | system.sc |
Inherits from: | Collection |
Inherited by: | EventHandler |
Properties
Methods
add: element [element ...]Adds each element to the set only if it is not already a member of the set.
- Notes
< Previous: The List Class Next: The EventHandler Class >