Sha256: d588a9bcea465e501fa6343c6bff60609e6a9c288f267e16b54cb2c94933800e

Contents?: true

Size: 1.62 KB

Versions: 3

Compression:

Stored size: 1.62 KB

Contents

#import "YapSet.h"


@implementation YapSet
{
	NSDictionary *dictionary;
	NSSet *set;
}

- (id)initWithSet:(NSMutableSet *)inSet
{
	if ((self = [super init]))
	{
		set = inSet; // retain, do NOT copy (which would defeat the entire purpose of this class)
	}
	return self;
}

- (id)initWithDictionary:(NSMutableDictionary *)inDictionary
{
	if ((self = [super init]))
	{
		dictionary = inDictionary; // retain, do NOT copy (which would defeat the entire purpose of this class)
	}
	return self;
}

// NSSet methods

- (BOOL)containsObject:(id)object
{
	if (set)
		return [set containsObject:object];
	else
		return CFDictionaryContainsKey((__bridge CFDictionaryRef)dictionary, (const void *)object);
}

- (BOOL)intersectsSet:(NSSet *)otherSet
{
	if (set)
	{
		return [set intersectsSet:otherSet];
	}
	else
	{
		for (id object in otherSet)
		{
			if (CFDictionaryContainsKey((__bridge CFDictionaryRef)dictionary, (const void *)object))
				return YES;
		}
		
		return NO;
	}
}

- (void)enumerateObjectsUsingBlock:(void (^)(id obj, BOOL *stop))block
{
	if (set)
	{
		[set enumerateObjectsUsingBlock:block];
	}
	else
	{
		if (block == NULL) return;
		[dictionary enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {
			
			block(key, stop);
		}];
	}
}

- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state
                                  objects:(__unsafe_unretained id *)stackbuf
                                    count:(NSUInteger)len
{
	if (set)
		return [set countByEnumeratingWithState:state objects:stackbuf count:len];
	else
		return [dictionary countByEnumeratingWithState:state objects:stackbuf count:len];
}

@end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
motion-yapper-0.0.3 vendor/Pods/YapDatabase/YapDatabase/Utilities/YapSet.m
motion-yapper-0.0.2 vendor/Pods/YapDatabase/YapDatabase/Utilities/YapSet.m
motion-yapper-0.0.1 vendor/Pods/YapDatabase/YapDatabase/Utilities/YapSet.m