Difference between revisions of "Script Classes for Adventure Games/Set Class"
From SCI Wiki
Jump to navigationJump to searchLine 30: | Line 30: | ||
[[Script Classes for Adventure Games/Code Class|26]] | | [[Script Classes for Adventure Games/Code Class|26]] | | ||
[[Script Classes for Adventure Games/Global Variables|27]] | | [[Script Classes for Adventure Games/Global Variables|27]] | | ||
+ | [[Script Classes for Adventure Games/Index|Index]] | ||
</div><br /> | </div><br /> | ||
Latest revision as of 03:12, 9 December 2015
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 |
Index
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 >