Then after
cs will contain the original elements, and the css1 subset:
css1[]->cs.insertSubset
Note that the element b, originally located in both cs and css1, now is located exclusively in css1. In this situation, cs.scan(# ... #) will run through the elements a, b, c, d, e and f. and css1.scan(# ... #) will run through the elements b and f.
If we then execute
we will have the following situation:
css2[]->cs.insertSubset
Note again, that c is exclusively in css2. If we now execute
we will have the following situation:
g[]->css1.insert; f[]->css2.insert; b[]->cs.delete
Finally,
will only scan the elements a and b, whereas
css1.scanUnclassified(# ... #)
will scan all elements (i.e. a, b, c, d, e, f and g).
css1.scan(# ... #)
Container Libraries - Reference Manual | © 1992-2004 Mjølner Informatics |
[Modified: Thursday October 19th 2000 at 12:51]
|