Created
September 18, 2012 08:17
-
-
Save jlcampana/3741980 to your computer and use it in GitHub Desktop.
NSMutableArray+Stack.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// NSMutableArray+Stack.h | |
// shell poc | |
// | |
// Created by Jose Luis Campaña on 9/18/12. | |
// Copyright (c) 2012 Jose Luis Campaña. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
@interface NSMutableArray (Stack) | |
- (void) push: (id)item; | |
- (id) pop; | |
- (id) peek; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment