mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Flesh out a little.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10011 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e8cb9dcc9d
commit
5ceb6d8ea7
1 changed files with 18 additions and 0 deletions
|
@ -34,53 +34,71 @@
|
|||
<sel>addObject:</sel>
|
||||
<arg type="id">anObject</arg>
|
||||
<desc>
|
||||
Adds the specified object to the receiver.
|
||||
The object is retained by the set.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="void">
|
||||
<sel>addObjectsFromArray:</sel>
|
||||
<arg type="NSArray*">anArray</arg>
|
||||
<desc>
|
||||
Adds all the objects in the array to the receiver.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="id">
|
||||
<sel>initWithCapacity:</sel>
|
||||
<arg type="unsigned int">numItems</arg>
|
||||
<desc>
|
||||
Initialises the receiver to be ready to have the specified number
|
||||
of items added to it. Additions of items to a set initialised
|
||||
with an appropriate capacity will be more efficient than addition
|
||||
of items otherwise.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="void">
|
||||
<sel>intersectSet:</sel>
|
||||
<arg type="NSSet*">otherSet</arg>
|
||||
<desc>
|
||||
Removes from the receiver all the objects it contains
|
||||
which are not also in otherSet.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="void">
|
||||
<sel>minusSet:</sel>
|
||||
<arg type="NSSet*">otherSet</arg>
|
||||
<desc>
|
||||
Removes from the receiver all the objects that are in
|
||||
otherSet.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="void">
|
||||
<sel>removeAllObjects</sel>
|
||||
<desc>
|
||||
Removes all objects from the receiver.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="void">
|
||||
<sel>removeObject:</sel>
|
||||
<arg type="id">anObject</arg>
|
||||
<desc>
|
||||
Removes the specified object from the receiver.
|
||||
</desc>
|
||||
</method>
|
||||
<method type="void">
|
||||
<sel>setSet:</sel>
|
||||
<arg type="NSSet*">otherSet</arg>
|
||||
<desc>
|
||||
Removes all objects from the receiver then adds the
|
||||
objects from otherSet. If the receiver <em>is</em>
|
||||
otherSet, the method has no effect.
|
||||
</desc>
|
||||
<standards><GNUstep/><MacOS-X/><NotOpenStep/></standards>
|
||||
</method>
|
||||
<method type="void">
|
||||
<sel>unionSet:</sel>
|
||||
<arg type="NSSet*">otherSet</arg>
|
||||
<desc>
|
||||
Adds all the objects from etherSet to the receiver.
|
||||
</desc>
|
||||
</method>
|
||||
</class>
|
||||
|
|
Loading…
Reference in a new issue