blob: 7fb9220ae7a7dca39c4f28d17337239c32b5bf8f [file] [log] [blame]
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-1998, 2000-2001, 2004-2011 Steve Nygard.
#import <Foundation/Foundation.h>
@interface NSArray (CDExtensions)
- (NSArray *)reversedArray;
- (NSArray *)arrayByMappingSelector:(SEL)aSelector;
@end
@interface NSArray (CDTopoSort)
- (NSArray *)topologicallySortedArray;
@end
@interface NSMutableArray (CDTopoSort)
- (void)sortTopologically;
@end