OLD | NEW |
(Empty) | |
| 1 // -*- mode: ObjC -*- |
| 2 |
| 3 // This file is part of class-dump, a utility for examining the Objective-C seg
ment of Mach-O files. |
| 4 // Copyright (C) 1997-1998, 2000-2001, 2004-2010 Steve Nygard. |
| 5 |
| 6 #import <Foundation/Foundation.h> |
| 7 |
| 8 @interface NSArray (CDExtensions) |
| 9 |
| 10 - (NSArray *)reversedArray; |
| 11 - (NSArray *)arrayByMappingSelector:(SEL)aSelector; |
| 12 |
| 13 @end |
| 14 |
| 15 @interface NSArray (CDTopoSort) |
| 16 |
| 17 - (NSArray *)topologicallySortedArray; |
| 18 |
| 19 @end |
| 20 |
| 21 @interface NSMutableArray (CDTopoSort) |
| 22 |
| 23 - (void)sortTopologically; |
| 24 |
| 25 @end |
OLD | NEW |