diff --git a/Headers/gnustep/base/Collecting.h b/Headers/gnustep/base/Collecting.h index d0eb69283..1e726627f 100644 --- a/Headers/gnustep/base/Collecting.h +++ b/Headers/gnustep/base/Collecting.h @@ -42,16 +42,16 @@ // INITIALIZING; - init; -- initWithContentsOf: (id )aCollection; +- initWithContentsOf: (id )aCollection; // TESTING; - (BOOL) isEmpty; - (BOOL) includesObject: anObject; -- (BOOL) isSubsetOf: (id )aCollection; -- (BOOL) isDisjointFrom: (id )aCollection; +- (BOOL) isSubsetOf: (id )aCollection; +- (BOOL) isDisjointFrom: (id )aCollection; - (int) compare: anObject; - (BOOL) isEqual: anObject; -- (BOOL) contentsEqual: (id )aCollection; +- (BOOL) contentsEqual: (id )aCollection; - (unsigned) count; - (unsigned) occurrencesOfObject: anObject; - (BOOL) trueForAllObjectsByCalling: (BOOL(*)(id))aFunc; @@ -134,16 +134,16 @@ // ADDING; - addObject: newObject; - addObjectIfAbsent: newObject; -- addContentsOf: (id )aCollection; -- addContentsOfIfAbsent: (id )aCollection; +- addContentsOf: (id )aCollection; +- addContentsOfIfAbsent: (id )aCollection; - addObjectsCount: (unsigned)count, ...; // REMOVING; - removeObject: oldObject; - removeObject: oldObject ifAbsentCall: (id(*)(arglist_t))excFunc; - removeAllOccurrencesOfObject: oldObject; -- removeContentsIn: (id )aCollection; -- removeContentsNotIn: (id )aCollection; +- removeContentsIn: (id )aCollection; +- removeContentsNotIn: (id )aCollection; - uniqueContents; - empty; diff --git a/Source/objects/Collecting.h b/Source/objects/Collecting.h index d0eb69283..1e726627f 100644 --- a/Source/objects/Collecting.h +++ b/Source/objects/Collecting.h @@ -42,16 +42,16 @@ // INITIALIZING; - init; -- initWithContentsOf: (id )aCollection; +- initWithContentsOf: (id )aCollection; // TESTING; - (BOOL) isEmpty; - (BOOL) includesObject: anObject; -- (BOOL) isSubsetOf: (id )aCollection; -- (BOOL) isDisjointFrom: (id )aCollection; +- (BOOL) isSubsetOf: (id )aCollection; +- (BOOL) isDisjointFrom: (id )aCollection; - (int) compare: anObject; - (BOOL) isEqual: anObject; -- (BOOL) contentsEqual: (id )aCollection; +- (BOOL) contentsEqual: (id )aCollection; - (unsigned) count; - (unsigned) occurrencesOfObject: anObject; - (BOOL) trueForAllObjectsByCalling: (BOOL(*)(id))aFunc; @@ -134,16 +134,16 @@ // ADDING; - addObject: newObject; - addObjectIfAbsent: newObject; -- addContentsOf: (id )aCollection; -- addContentsOfIfAbsent: (id )aCollection; +- addContentsOf: (id )aCollection; +- addContentsOfIfAbsent: (id )aCollection; - addObjectsCount: (unsigned)count, ...; // REMOVING; - removeObject: oldObject; - removeObject: oldObject ifAbsentCall: (id(*)(arglist_t))excFunc; - removeAllOccurrencesOfObject: oldObject; -- removeContentsIn: (id )aCollection; -- removeContentsNotIn: (id )aCollection; +- removeContentsIn: (id )aCollection; +- removeContentsNotIn: (id )aCollection; - uniqueContents; - empty;