Difference between revisions of "Script Classes for Adventure Games/Set Class"
From SCI Wiki
Jump to navigationJump to searchLine 62: | Line 62: | ||
| | ||
− | + | ==<br /> 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 | ||
+ | |} | ||
+ | |||
+ | ===<br /> Properties === | ||
+ | |||
+ | | ||
+ | |||
+ | ===<br /> Methods === | ||
+ | |||
+ | ====<br /> add: element [element ...] ==== | ||
+ | <blockquote>Adds each element to the set only if it is not already a member of the set.</blockquote> | ||
| |
Revision as of 01:30, 7 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 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
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: List Class Next: EventHandler >