Skip to content

Instantly share code, notes, and snippets.

@ilklatte
ilklatte / NSMutableArray+QueueAndStack.h
Last active January 3, 2016 23:18
Add queue and stack implemention to NSMutableArray class
#import <Foundation/Foundation.h>
@interface NSMutableArray (QueueAndStack)
-(id)queuePop;
-(void)queuePush:(id)obj;
-(id)stackPop;
-(void)stackPush:(id)obj;
@end