Sha256: 2f9be37a5476587d1ec44aef5e75209427e4676b3dc6cf710b2b0283bdd878cc
Contents?: true
Size: 556 Bytes
Versions: 3
Compression:
Stored size: 556 Bytes
Contents
#import <Foundation/Foundation.h> /** * An efficient collection/key tuple class. * * Combines collection & key into a single object, * and provides the proper methods to use the object in various classes (such as NSDictionary, NSSet, etc). **/ @interface YapCollectionKey : NSObject <NSCopying, NSCoding> - (id)initWithCollection:(NSString *)collection key:(NSString *)key; @property (nonatomic, strong, readonly) NSString *collection; @property (nonatomic, strong, readonly) NSString *key; - (BOOL)isEqual:(id)anObject; - (NSUInteger)hash; @end
Version data entries
3 entries across 1 versions & 1 rubygems