You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
4 months ago
|
//
|
||
|
// AMutableArray.h
|
||
|
// a_ST4
|
||
|
//
|
||
|
// Created by Alan Condit on 3/12/11.
|
||
|
// Copyright 2011 Alan's MachineWorks. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "ArrayIterator.h"
|
||
|
|
||
|
@class ArrayIterator;
|
||
|
|
||
|
@interface AMutableArray : NSMutableArray {
|
||
|
NSInteger BuffSize;
|
||
|
NSInteger count;
|
||
|
__strong NSMutableData *buffer;
|
||
|
__strong id *ptrBuffer;
|
||
|
}
|
||
|
|
||
|
+ (id) newArray;
|
||
|
+ (id) arrayWithCapacity:(NSInteger)size;
|
||
|
|
||
|
- (id) init;
|
||
|
- (id) initWithCapacity:(NSInteger)size;
|
||
|
- (id) copyWithZone:(NSZone *)aZone;
|
||
|
|
||
|
- (void) addObject:(id)anObject;
|
||
|
- (void) addObjectsFromArray:(NSArray *)anArray;
|
||
|
- (id) objectAtIndex:(NSInteger)anIdx;
|
||
|
- (void) insertObject:(id)anObject atIndex:(NSInteger)anIdx;
|
||
|
- (void) removeAllObjects;
|
||
|
- (void) removeLastObject;
|
||
|
- (void) removeObjectAtIndex:(NSInteger)idx;
|
||
|
- (void) replaceObjectAtIndex:(NSInteger)idx withObject:(id)obj;
|
||
|
- (NSInteger) count;
|
||
|
- (void)setCount:(NSInteger)cnt;
|
||
|
//- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
|
||
|
- (NSArray *) allObjects;
|
||
|
- (ArrayIterator *) objectEnumerator;
|
||
|
- (void) ensureCapacity:(NSInteger) index;
|
||
|
- (NSString *) description;
|
||
|
- (NSString *) toString;
|
||
|
|
||
|
@property (assign) NSInteger BuffSize;
|
||
|
@property (assign, getter=count, setter=setCount:) NSInteger count;
|
||
|
@property (retain) NSMutableData *buffer;
|
||
|
@property (assign) id *ptrBuffer;
|
||
|
|
||
|
@end
|