summaryrefslogtreecommitdiff
path: root/Volta/Additions/NSMutableArray+Additions.h
blob: 8525146e1c771385815191c706719882034a9257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  NSArray+Additions.h
//  popquizshow
//
//  Created by Ronny Fenrich on 2012-11-14.
//  Copyright (c) 2012 Kyle Langille. All rights reserved.
//

#import <Foundation/Foundation.h>

// This category enhances NSMutableArray by providing
// methods to randomly shuffle the elements.
@interface NSMutableArray (Additions)

- (void)shuffle;

@end