Repository URL to install this package:
Version:
1.0.4 ▾
|
com.vipera.de.foundation.commons
/
src
/
ios
/
DECommons.framework
/
Headers
/
NSMutableArray+QueueStack.h
|
---|
//
// NSMutableArray+QueueStack.h
// DynamicEngine
//
// Created by Marco Bonati on 03/01/2017.
// Copyright © 2017 Vipera. All rights reserved.
//
#ifndef NSMutableArray_QueueStack_h
#define NSMutableArray_QueueStack_h
#import <Foundation/Foundation.h>
@interface NSMutableArray (QueueStack)
-(id)queuePop;
-(void)queuePush:(id)obj;
-(id)stackPop;
-(void)stackPush:(id)obj;
@end
#endif /* NSMutableArray_QueueStack_h */