Swiftgram/MTBag.h
2017-02-02 18:58:11 +03:00

12 lines
221 B
Objective-C

#import <Foundation/Foundation.h>
@interface MTBag : NSObject
- (NSInteger)addItem:(id)item;
- (void)enumerateItems:(void (^)(id))block;
- (void)removeItem:(NSInteger)key;
- (bool)isEmpty;
- (NSArray *)copyItems;
@end