mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-19 17:51:29 +00:00

git-subtree-dir: submodules/Display git-subtree-mainline: 9bc996374ffdad37aef175427db72731c9551dcf git-subtree-split: 7bd11013ea936e3d49d937550d599f5816d32560
65 lines
1.0 KiB
Objective-C
65 lines
1.0 KiB
Objective-C
#import "NSBag.h"
|
|
|
|
@interface NSBag ()
|
|
{
|
|
NSInteger _nextKey;
|
|
NSMutableArray *_items;
|
|
NSMutableArray *_itemKeys;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation NSBag
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_items = [[NSMutableArray alloc] init];
|
|
_itemKeys = [[NSMutableArray alloc] init];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (NSInteger)addItem:(id)item
|
|
{
|
|
if (item == nil)
|
|
return -1;
|
|
|
|
NSInteger key = _nextKey;
|
|
[_items addObject:item];
|
|
[_itemKeys addObject:@(key)];
|
|
_nextKey++;
|
|
|
|
return key;
|
|
}
|
|
|
|
- (void)enumerateItems:(void (^)(id))block
|
|
{
|
|
if (block)
|
|
{
|
|
for (id item in _items)
|
|
{
|
|
block(item);
|
|
}
|
|
}
|
|
}
|
|
|
|
- (void)removeItem:(NSInteger)key
|
|
{
|
|
NSUInteger index = 0;
|
|
for (NSNumber *itemKey in _itemKeys)
|
|
{
|
|
if ([itemKey integerValue] == key)
|
|
{
|
|
[_items removeObjectAtIndex:index];
|
|
[_itemKeys removeObjectAtIndex:index];
|
|
break;
|
|
}
|
|
index++;
|
|
}
|
|
}
|
|
|
|
@end
|