initial commit

This commit is contained in:
Patrick Wardle
2015-06-13 16:51:34 -10:00
commit e8ce5006bb
144 changed files with 21324 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
//
// NSMutableArray+QueueAdditions.h
// BlockBlock
//
// Created by Patrick Wardle on 9/26/14.
// Copyright (c) 2014 Synack. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSMutableArray (QueueAdditions)
{
}
//METHODS
//remove first object
-(id)dequeue;
//add to end
-(void)enqueue:(id)obj;
//check if empty
-(BOOL)empty;
@end