mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Initial revision
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@636 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fb0bac6fe6
commit
5a7ad3612c
4 changed files with 684 additions and 0 deletions
52
Headers/gnustep/base/NSGSet.h
Normal file
52
Headers/gnustep/base/NSGSet.h
Normal file
|
@ -0,0 +1,52 @@
|
|||
/* Interface to concrete implementation of NSSet based on GNU Array
|
||||
Copyright (C) 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: April 1995
|
||||
|
||||
This file is part of the GNU Objective C Class Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#ifndef __NSGSet_h_OBJECTS_INCLUDE
|
||||
#define __NSGSet_h_OBJECTS_INCLUDE
|
||||
|
||||
#include <objects/stdobjects.h>
|
||||
#include <Foundation/NSSet.h>
|
||||
#include <objects/Set.h>
|
||||
#include <objects/elt.h>
|
||||
|
||||
@interface NSGSet : NSSet
|
||||
{
|
||||
/* For now, these must match the instance variables in objects/Set.h.
|
||||
This will change. */
|
||||
coll_cache_ptr _contents_hash; // a hashtable to hold the contents;
|
||||
int (*_comparison_function)(elt,elt);
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@interface NSGMutableSet : NSMutableSet
|
||||
{
|
||||
/* For now, these must match the instance variables in objects/Array.h.
|
||||
This will change. */
|
||||
coll_cache_ptr _contents_hash; // a hashtable to hold the contents;
|
||||
int (*_comparison_function)(elt,elt);
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
#endif /* __NSGSet_h_OBJECTS_INCLUDE */
|
80
Headers/gnustep/base/NSSet.h
Normal file
80
Headers/gnustep/base/NSSet.h
Normal file
|
@ -0,0 +1,80 @@
|
|||
/* Interface for NSSet for GNUStep
|
||||
Copyright (C) 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Created: Sep 1995
|
||||
|
||||
This file is part of the GNU Objective C Class Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#ifndef _NSSet_h_OBJECTS_INCLUDE
|
||||
#define _NSSet_h_OBJECTS_INCLUDE
|
||||
|
||||
#include <objects/stdobjects.h>
|
||||
|
||||
@class NSArray, NSString, NSEnumerator, NSDictionary;
|
||||
|
||||
@interface NSSet : NSObject <NSCopying>
|
||||
|
||||
+ allocWithZone: (NSZone*)zone;
|
||||
+ set;
|
||||
+ setWithArray: (NSArray*)array;
|
||||
+ setWithObject: anObject;
|
||||
+ setWithObjects: (NSArray*)objects, ...;
|
||||
- initWithArray: (NSArray*)array;
|
||||
- initWithObjects: (NSArray*)objects, ...;
|
||||
- initWithObjects: (id*)objects
|
||||
count: (unsigned)count;
|
||||
- initWithSet: (NSSet*)otherSet;
|
||||
- initWithSet: (NSSet*)otherSet copyItems: (BOOL)flags;
|
||||
|
||||
- (NSArray*) allObjects;
|
||||
- anyObject;
|
||||
- (BOOL) containsObject: anObject;
|
||||
- (unsigned) count;
|
||||
- member: anObject;
|
||||
- (NSEnumerator*) objectEnumerator;
|
||||
- (void) makeObjectsPerform: (SEL)aSelector;
|
||||
- (void) makeObjectsPerform: (SEL)aSelector withObject:argument;
|
||||
|
||||
|
||||
- (BOOL) intersectsSet: (NSSet*)other;
|
||||
- (BOOL) isEqualToSet: (NSSet*)other;
|
||||
- (BOOL) isSubsetOfSet: (NSSet*)other;
|
||||
|
||||
- (NSString*) description;
|
||||
- (NSString*) descriptionWithLocale: (NSDictionary*)ld;
|
||||
|
||||
@end
|
||||
|
||||
@interface NSMutableSet: NSSet
|
||||
|
||||
+ allocWithZone: (NSZone*)zone;
|
||||
+ setWithCapacity: (unsigned)numItems;
|
||||
- initWithCapacity: (unsigned)numItems;
|
||||
|
||||
- (void) addObject: anObject;
|
||||
- (void) addObjectsFromArray: (NSArray*)array;
|
||||
- (void) unionSet: (NSSet*)other;
|
||||
- (void) intersectSet: (NSSet*)other;
|
||||
- (void) minusSet: (NSSet*)other;
|
||||
- (void) removeAllObjects;
|
||||
- (void) removeObject: anObject;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
175
Source/NSGSet.m
Normal file
175
Source/NSGSet.m
Normal file
|
@ -0,0 +1,175 @@
|
|||
/* Concrete implementation of NSSet based on GNU Set class
|
||||
Copyright (C) 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Created: Sep 1995
|
||||
|
||||
This file is part of the GNU Objective C Class Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <Foundation/NSGSet.h>
|
||||
#include <objects/NSSet.h>
|
||||
#include <objects/behavior.h>
|
||||
#include <objects/Set.h>
|
||||
#include <objects/eltfuncs.h>
|
||||
#include <Foundation/NSUtilities.h>
|
||||
#include <Foundation/NSString.h>
|
||||
|
||||
@interface NSGSetEnumerator : NSEnumerator
|
||||
{
|
||||
NSSet *set;
|
||||
void *enum_state;
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation NSGSetEnumerator
|
||||
|
||||
- initWithSet: (NSSet*)d
|
||||
{
|
||||
[super init];
|
||||
set = d;
|
||||
[set retain];
|
||||
enum_state = 0;
|
||||
return self;
|
||||
}
|
||||
|
||||
- nextObject
|
||||
{
|
||||
elt e;
|
||||
if ([set getNextElement:&e withEnumState:&enum_state])
|
||||
return e.id_u;
|
||||
else
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
[set release];
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@implementation NSGSet
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
static int done = 0;
|
||||
|
||||
/* xxx This class not yet ready for action. */
|
||||
[self notImplemented:_cmd];
|
||||
|
||||
if (!done)
|
||||
{
|
||||
done = 1;
|
||||
class_add_behavior([NSGSet class], [Set class]);
|
||||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
||||
/* This is the designated initializer */
|
||||
- initWithObjects: (id*)objects
|
||||
forKeys: (NSString**)keys
|
||||
count: (unsigned)count
|
||||
{
|
||||
char * content_encoding = @encode(id);
|
||||
char * key_encoding = @encode(id);
|
||||
CALL_METHOD_IN_CLASS([KeyedCollection class], initWithType:keyType:,
|
||||
content_encoding, key_encoding);
|
||||
_contents_hash =
|
||||
coll_hash_new(POWER_OF_TWO(count),
|
||||
elt_get_hash_function(key_encoding),
|
||||
elt_get_comparison_function(key_encoding));
|
||||
_comparison_function = elt_get_comparison_function(content_encoding);
|
||||
while (count--)
|
||||
{
|
||||
[keys[count] retain];
|
||||
[objects[count] retain];
|
||||
coll_hash_add(&_contents_hash, keys[count], objects[count]);
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
/*
|
||||
Comes from Set.m
|
||||
- (unsigned) count
|
||||
*/
|
||||
|
||||
- objectForKey: (NSString*)aKey
|
||||
{
|
||||
elt ret_nil(arglist_t a)
|
||||
{
|
||||
return nil;
|
||||
}
|
||||
return [self elementAtKey:aKey ifAbsentCall:ret_nil].id_u;
|
||||
}
|
||||
|
||||
- (NSEnumerator*) keyEnumerator
|
||||
{
|
||||
return [[NSGSetKeyEnumerator alloc] initWithSet:self];
|
||||
}
|
||||
|
||||
- (NSEnumerator*) objectEnumerator
|
||||
{
|
||||
return [[NSGSetObjectEnumerator alloc] initWithSet:self];
|
||||
}
|
||||
#endif
|
||||
|
||||
@end
|
||||
|
||||
@implementation NSGMutableSet
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
static int done = 0;
|
||||
|
||||
/* xxx This class not yet ready for action. */
|
||||
[self notImplemented:_cmd];
|
||||
|
||||
if (!done)
|
||||
{
|
||||
done = 1;
|
||||
class_add_behavior([NSGMutableSet class], [NSGSet class]);
|
||||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
||||
/* This is the designated initializer */
|
||||
/* Comes from Set.m
|
||||
- initWithCapacity: (unsigned)numItems
|
||||
*/
|
||||
|
||||
- (void) setObject:anObject forKey:(NSString *)aKey
|
||||
{
|
||||
[self putElement:anObject atKey:aKey];
|
||||
}
|
||||
|
||||
- (void) removeObjectForKey:(NSString *)aKey
|
||||
{
|
||||
elt do_nothing (arglist_t a)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
[self removeElementAtKey:aKey ifAbsentCall:do_nothing];
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@end
|
377
Source/NSSet.m
Normal file
377
Source/NSSet.m
Normal file
|
@ -0,0 +1,377 @@
|
|||
/* NSSet - Set object to store key/value pairs
|
||||
Copyright (C) 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Created: Sep 1995
|
||||
|
||||
This file is part of the GNU Objective C Class Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <Foundation/NSSet.h>
|
||||
#include <Foundation/NSGSet.h>
|
||||
#include <Foundation/NSArray.h>
|
||||
#include <Foundation/NSUtilities.h>
|
||||
#include <objects/NSString.h>
|
||||
#include <assert.h>
|
||||
|
||||
@implementation NSSet
|
||||
|
||||
static Class NSSet_concrete_class;
|
||||
static Class NSMutableSet_concrete_class;
|
||||
|
||||
+ (void) _setConcreteClass: (Class)c
|
||||
{
|
||||
NSSet_concrete_class = c;
|
||||
}
|
||||
|
||||
+ (void) _setMutableConcreteClass: (Class)c
|
||||
{
|
||||
NSMutableSet_concrete_class = c;
|
||||
}
|
||||
|
||||
+ (Class) _concreteClass
|
||||
{
|
||||
return NSSet_concrete_class;
|
||||
}
|
||||
|
||||
+ (Class) _mutableConcreteClass
|
||||
{
|
||||
return NSMutableSet_concrete_class;
|
||||
}
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
NSSet_concrete_class = [NSGSet class];
|
||||
NSMutableSet_concrete_class = [NSGMutableSet class];
|
||||
}
|
||||
|
||||
+ allocWithZone: (NSZone*)z
|
||||
{
|
||||
return NSAllocateObject([self _concreteClass], 0, z);
|
||||
}
|
||||
|
||||
+ set
|
||||
{
|
||||
return [[[[self _concreteClass] alloc] init]
|
||||
autorelease];
|
||||
}
|
||||
|
||||
+ setWithObjects: (id*)objects
|
||||
count: (unsigned)count
|
||||
{
|
||||
return [[[[self _concreteClass] alloc] initWithObjects:objects
|
||||
count:count]
|
||||
autorelease];
|
||||
}
|
||||
|
||||
+ setWithArray: (NSArray*)objects
|
||||
{
|
||||
/* xxx Only works because NSArray also responds to objectEnumerator
|
||||
and nextObject. */
|
||||
return [[[[self _concreteClass] alloc] initWithSet:(NSSet*)objects]
|
||||
autorelease];
|
||||
}
|
||||
|
||||
+ setWithObject: anObject
|
||||
{
|
||||
return [[[[self _concreteClass] alloc] initWithObjects:&anObject
|
||||
count:1]
|
||||
autorelease];
|
||||
}
|
||||
|
||||
/* Same as NSArray */
|
||||
/* Not very pretty... */
|
||||
#define INITIAL_OBJECTS_SIZE 10
|
||||
- initWithObjects: firstObject rest: (va_list)ap
|
||||
{
|
||||
id *objects;
|
||||
int i = 0;
|
||||
int s = INITIAL_OBJECTS_SIZE;
|
||||
|
||||
OBJC_MALLOC(objects, id, s);
|
||||
if (firstObject != nil)
|
||||
{
|
||||
objects[i++] = firstObject;
|
||||
while ((objects[i++] = va_arg(ap, id)))
|
||||
{
|
||||
if (i >= s)
|
||||
{
|
||||
s *= 2;
|
||||
OBJC_REALLOC(objects, id, s);
|
||||
}
|
||||
}
|
||||
}
|
||||
self = [self initWithObjects:objects count:i-1];
|
||||
OBJC_FREE(objects);
|
||||
return self;
|
||||
}
|
||||
|
||||
/* Same as NSArray */
|
||||
+ setWithObjects: firstObject, ...
|
||||
{
|
||||
va_list ap;
|
||||
va_start(ap, firstObject);
|
||||
self = [[[self _concreteClass] alloc] initWithObjects:firstObject rest:ap];
|
||||
va_end(ap);
|
||||
return [self autorelease];
|
||||
}
|
||||
|
||||
/* This is the designated initializer */
|
||||
- initWithObjects: (id*)objects
|
||||
count: (unsigned)count
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
return 0;
|
||||
}
|
||||
|
||||
- initWithArray: (NSArray*)array
|
||||
{
|
||||
/* xxx Only works because NSArray also responds to objectEnumerator
|
||||
and nextObject. */
|
||||
return [self initWithSet:(NSSet*)array];
|
||||
}
|
||||
|
||||
/* Same as NSArray */
|
||||
- initWithObjects: firstObject, ...
|
||||
{
|
||||
va_list ap;
|
||||
va_start(ap, firstObject);
|
||||
self = [self initWithObjects:firstObject rest:ap];
|
||||
va_end(ap);
|
||||
return self;
|
||||
}
|
||||
|
||||
/* Override superclass's designated initializer */
|
||||
- init
|
||||
{
|
||||
return [self initWithObjects:NULL count:0];
|
||||
}
|
||||
|
||||
- initWithSet: (NSSet*)other copyItems: (BOOL)flag
|
||||
{
|
||||
int c = [other count];
|
||||
id os[c], o, e = [other objectEnumerator];
|
||||
int i = 0;
|
||||
|
||||
while ((o = [e nextObject]))
|
||||
{
|
||||
if (flag)
|
||||
os[i] = [o copy];
|
||||
else
|
||||
os[i] = o;
|
||||
i++;
|
||||
}
|
||||
return [self initWithObjects:os count:c];
|
||||
}
|
||||
|
||||
- initWithSet: (NSSet*)other
|
||||
{
|
||||
return [self initWithSet:other copyItems:NO];
|
||||
}
|
||||
|
||||
- (NSArray*) allObjects
|
||||
{
|
||||
id e = [self objectEnumerator];
|
||||
int i, c = [self count];
|
||||
id k[c];
|
||||
|
||||
for (i = 0; i < c; i++)
|
||||
{
|
||||
k[i] = [e nextObject];
|
||||
assert(k[i]);
|
||||
}
|
||||
assert(![e nextObject]);
|
||||
return [[[NSArray alloc] initWithObjects:k count:c]
|
||||
autorelease];
|
||||
}
|
||||
|
||||
- anyObject
|
||||
{
|
||||
return [self notImplemented:_cmd];
|
||||
}
|
||||
|
||||
- (BOOL) containsObject: anObject
|
||||
{
|
||||
return (([self member:anObject]) ? YES : NO);
|
||||
}
|
||||
|
||||
- (unsigned) count
|
||||
{
|
||||
[self subclassResponsibility:_cmd];
|
||||
return 0;
|
||||
}
|
||||
|
||||
- member: anObject
|
||||
{
|
||||
return [self subclassResponsibility:_cmd];
|
||||
return 0;
|
||||
}
|
||||
|
||||
- (NSEnumerator*) objectEnumerator
|
||||
{
|
||||
return [self subclassResponsibility:_cmd];
|
||||
}
|
||||
|
||||
- (void) makeObjectsPerform: (SEL)aSelector
|
||||
{
|
||||
id o, e = [self objectEnumerator];
|
||||
while ((o = [e nextObject]))
|
||||
[o perform:aSelector];
|
||||
}
|
||||
|
||||
- (void) makeObjectsPerform: (SEL)aSelector withObject:argument
|
||||
{
|
||||
id o, e = [self objectEnumerator];
|
||||
while ((o = [e nextObject]))
|
||||
[o perform:aSelector withObject: argument];
|
||||
}
|
||||
|
||||
- (BOOL) intersectsSet: (NSSet*) otherSet
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (BOOL) isSubsetOfSet: (NSSet*) otherSet
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (BOOL) isEqual: other
|
||||
{
|
||||
if ([other isKindOfClass:[NSSet class]])
|
||||
return [self isEqualToSet:other];
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (BOOL) isEqualToSet: (NSSet*)other
|
||||
{
|
||||
if ([self count] != [other count])
|
||||
return NO;
|
||||
{
|
||||
id o, e = [self objectEnumerator];
|
||||
while ((o = [e nextObject]))
|
||||
if (![other member:o])
|
||||
return NO;
|
||||
}
|
||||
/* xxx Recheck this. */
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (NSString*) description
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
return 0;
|
||||
}
|
||||
|
||||
- (NSString*) descriptionWithLocale: (NSDictionary*)ld;
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
return nil;
|
||||
}
|
||||
|
||||
- copyWithZone: (NSZone*)z
|
||||
{
|
||||
/* a deep copy */
|
||||
int count = [self count];
|
||||
id objects[count];
|
||||
id enumerator = [self objectEnumerator];
|
||||
id o;
|
||||
int i;
|
||||
|
||||
for (i = 0; (o = [enumerator nextObject]); i++)
|
||||
objects[i] = [o copyWithZone:z];
|
||||
return [[[[self class] _concreteClass] alloc]
|
||||
initWithObjects:objects
|
||||
count:count];
|
||||
}
|
||||
|
||||
- mutableCopyWithZone: (NSZone*)z
|
||||
{
|
||||
/* a shallow copy */
|
||||
return [[[[[self class] _mutableConcreteClass] _mutableConcreteClass] alloc]
|
||||
initWithSet:self];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation NSMutableSet
|
||||
|
||||
+ allocWithZone: (NSZone*)z
|
||||
{
|
||||
return NSAllocateObject([self _mutableConcreteClass], 0, z);
|
||||
}
|
||||
|
||||
+ setWithCapacity: (unsigned)numItems
|
||||
{
|
||||
return [[[[self _mutableConcreteClass] alloc] initWithCapacity:numItems]
|
||||
autorelease];
|
||||
}
|
||||
|
||||
/* This is the designated initializer */
|
||||
- initWithCapacity: (unsigned)numItems
|
||||
{
|
||||
return [self subclassResponsibility:_cmd];
|
||||
}
|
||||
|
||||
/* Override superclass's designated initializer */
|
||||
- initWithObjects: (id*)objects
|
||||
count: (unsigned)count
|
||||
{
|
||||
[self initWithCapacity:count];
|
||||
while (count--)
|
||||
[self addObject:objects[count]];
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void) addObject: anObject
|
||||
{
|
||||
[self subclassResponsibility:_cmd];
|
||||
}
|
||||
|
||||
- (void) addObjectsFromArray: (NSArray*)array
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
}
|
||||
|
||||
- (void) unionSet: (NSSet*) other
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
}
|
||||
|
||||
- (void) intersectSet: (NSSet*) other
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
}
|
||||
|
||||
- (void) minusSet: (NSSet*) other
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
}
|
||||
|
||||
- (void) removeAllObjects
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
}
|
||||
|
||||
- (void) removeObject: anObject
|
||||
{
|
||||
[self notImplemented:_cmd];
|
||||
}
|
||||
|
||||
@end
|
Loading…
Reference in a new issue