luxlabs header browser preview


@class NSArray, NSOrderedSet;

@interface HMFOrderedDictionary : NSObject <HMFAssociativeCollection, NSCopying, NSMutableCopying, NSSecureCoding> {
    NSArray *_objects;
    NSOrderedSet *_keys;
}

@property (class, readonly) BOOL supportsSecureCoding;

@property (readonly) unsigned long long count;
@property (readonly, copy) NSArray *allKeys;
@property (readonly, copy) NSArray *allValues;

+ (id)orderedDictionary;
+ (id)orderedDictionaryWithObject:(id)a0 forKey:(id)a1;

- (id)objectEnumerator;
- (id)init;
- (unsigned long long)hash;
- (void)enumerateKeysAndObjectsWithOptions:(unsigned long long)a0 usingBlock:(id /* block */)a1;
- (id)keyEnumerator;
- (id)initWithObjects:(id)a0 orderedKeySet:(id)a1;
- (void)encodeWithCoder:(id)a0;
- (void)enumerateKeysAndObjectsUsingBlock:(id /* block */)a0;
- (id)description;
- (id)initWithObjects:(id)a0 forKeys:(id)a1 copyObjects:(BOOL)a2 copyKeys:(BOOL)a3;
- (void).cxx_destruct;
- (id)objectForKeyedSubscript:(id)a0;
- (id)objectsForKeys:(id)a0 notFoundMarker:(id)a1;
- (BOOL)isEqual:(id)a0;
- (id)mutableCopyWithZone:(struct _NSZone { } *)a0;
- (id)objectForKey:(id)a0;
- (id)initWithCoder:(id)a0;
- (id)copyWithZone:(struct _NSZone { } *)a0;
- (id)initWithObjects:(id)a0 forKeys:(id)a1;
- (id)initWithObject:(id)a0 forKey:(id)a1;
- (id)initBySortingDictionary:(id)a0;
- (id)initBySortingDictionary:(id)a0 copyItems:(BOOL)a1 keyComparator:(id /* block */)a2;
- (id)mutableUnorderedCopy;
- (id)unorderedCopy;

@end