Difference between revisions of "Script Classes for Adventure Games/Set Class"

From SCI Wiki
Jump to navigationJump to search
Line 78: Line 78:
 
===<br /> Properties ===
 
===<br /> Properties ===
  
&nbsp;
+
<blockquote>&nbsp;</blockquote>
  
 
===<br /> Methods ===
 
===<br /> Methods ===

Revision as of 01:32, 7 December 2015

Official SCI Documentation

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

Author: Jeff Stephenson

Date: 5 April 1988

 


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


 

Table of Contents

 

< Previous: List Class Next: EventHandler >