blob: d7d935c4f5533f0f2be1b197420825a0396289b8 [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-2019 Steve Nygard.
@interface NSArray (CDExtensions)
- (NSArray *)reversedArray;
@end
@interface NSArray (CDTopoSort)
- (NSArray *)topologicallySortedArray;
@end
@interface NSMutableArray (CDTopoSort)
- (void)sortTopologically;
@end