mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Sorting routines
This commit is contained in:
parent
2dccb2eee6
commit
f878243678
1 changed files with 4 additions and 2 deletions
|
@ -1142,14 +1142,16 @@ static SEL rlSel;
|
|||
|
||||
- (NSArray *) sortedArrayUsingComparator: (NSComparator)comparator
|
||||
{
|
||||
return nil;
|
||||
return [self sortedArrayWithOptions: 0
|
||||
usingComparator: comparator];
|
||||
}
|
||||
|
||||
- (NSArray *)
|
||||
sortedArrayWithOptions: (NSSortOptions)options
|
||||
usingComparator: (NSComparator)comparator
|
||||
{
|
||||
return nil;
|
||||
return [[self array] sortedArrayWithOptions: options
|
||||
usingComparator: comparator];
|
||||
}
|
||||
|
||||
// Filtering Ordered Sets
|
||||
|
|
Loading…
Reference in a new issue