luxlabs header browser preview


@class OITSULinkedPointerSetEntry;

@interface OITSUMutableLinkedPointerSet : NSObject <NSFastEnumeration> {
    struct __CFDictionary { } *mDictionary;
    OITSULinkedPointerSetEntry *mHead;
    OITSULinkedPointerSetEntry *mTail;
}

- (id)objectEnumerator;
- (id)init;
- (unsigned long long)hash;
- (void)dealloc;
- (void)removeAllObjects;
- (BOOL)containsObject:(id)a0;
- (unsigned long long)count;
- (id)firstObject;
- (id)array;
- (void)removeObject:(id)a0;
- (BOOL)isEqual:(id)a0;
- (void)addObject:(id)a0;
- (unsigned long long)countByEnumeratingWithState:(struct { unsigned long long x0; id *x1; unsigned long long *x2; unsigned long long x3[5]; } *)a0 objects:(id *)a1 count:(unsigned long long)a2;
- (id)reverseObjectEnumerator;
- (BOOL)hasObjects;
- (void)insertFirstObject:(id)a0;
- (id)objectEnumeratorAfterObject:(id)a0;

@end