Nu Class Reference

NSMutableArray Extensions

NSMutableArray extensions for Nu programming.

Declared in: nu/nu.nu, objc/extensions.h



Methods

- (void) << (id) object
Concisely add objects to arrays using this method, which is equivalent to a call to addObject:.

in nu/nu.nu

- (void) addObjectsFromList: (id) list
Add the objects from the specified list to the array.

in objc/extensions.h

- (void) addPossiblyNullObject: (id) anObject
Add an object to an array, automatically converting nil into [NSNull null].

in objc/extensions.h

- (void) insertPossiblyNullObject: (id) anObject
atIndex: (int) index
Insert an object into an array, automatically converting nil into [NSNull null].

in objc/extensions.h

- (void) replaceObjectAtIndex: (int) index
withPossiblyNullObject: (id) anObject
Replace an object in an array, automatically converting nil into [NSNull null].

in objc/extensions.h