Oolite 1.91.0.7644-241112-7f5034b
Loading...
Searching...
No Matches
NSMutableArray(OOInserter) Category Reference

#include <OOCollectionExtractors.h>

Instance Methods

(void) - oo_addInteger:
 
(void) - oo_addUnsignedInteger:
 
(void) - oo_addFloat:
 
(void) - oo_addBool:
 
(void) - oo_addVector:
 
(void) - oo_addQuaternion:
 
(void) - oo_insertInteger:atIndex:
 
(void) - oo_insertUnsignedInteger:atIndex:
 
(void) - oo_insertFloat:atIndex:
 
(void) - oo_insertBool:atIndex:
 
(void) - oo_insertVector:atIndex:
 
(void) - oo_insertQuaternion:atIndex:
 

Detailed Description

Definition at line 302 of file OOCollectionExtractors.h.

Method Documentation

◆ oo_addBool:

- (void) oo_addBool: (BOOL) value

Definition at line 1558 of file OOCollectionExtractors.m.

1041 :(BOOL)value
1042{
1043 [self addObject:[NSNumber numberWithBool:value]];
1044}

◆ oo_addFloat:

- (void) oo_addFloat: (double) value

Definition at line 1558 of file OOCollectionExtractors.m.

1035 :(double)value
1036{
1037 [self addObject:[NSNumber numberWithDouble:value]];
1038}

◆ oo_addInteger:

- (void) oo_addInteger: (long) value

Definition at line 1558 of file OOCollectionExtractors.m.

1023 :(long)value
1024{
1025 [self addObject:[NSNumber numberWithLong:value]];
1026}
typedef long(ZCALLBACK *tell_file_func) OF((voidpf opaque

◆ oo_addQuaternion:

- (void) oo_addQuaternion: (Quaternion) value

Definition at line 1558 of file OOCollectionExtractors.m.

1054 :(Quaternion)value
1055{
1056 [self addObject:OOPropertyListFromQuaternion(value)];
1057}

◆ oo_addUnsignedInteger:

- (void) oo_addUnsignedInteger: (unsigned long) value

Definition at line 1558 of file OOCollectionExtractors.m.

1029 :(unsigned long)value
1030{
1031 [self addObject:[NSNumber numberWithUnsignedLong:value]];
1032}

◆ oo_addVector:

- (void) oo_addVector: (Vector) value

Definition at line 1558 of file OOCollectionExtractors.m.

1048 :(Vector)value
1049{
1050 [self addObject:OOPropertyListFromVector(value)];
1051}

◆ oo_insertBool:atIndex:

- (void) oo_insertBool: (BOOL) value
atIndex: (NSUInteger) index 

Definition at line 1558 of file OOCollectionExtractors.m.

1079 :(BOOL)value atIndex:(NSUInteger)index
1080{
1081 [self insertObject:[NSNumber numberWithBool:value] atIndex:index];
1082}

◆ oo_insertFloat:atIndex:

- (void) oo_insertFloat: (double) value
atIndex: (NSUInteger) index 

Definition at line 1558 of file OOCollectionExtractors.m.

1073 :(double)value atIndex:(NSUInteger)index
1074{
1075 [self insertObject:[NSNumber numberWithDouble:value] atIndex:index];
1076}

◆ oo_insertInteger:atIndex:

- (void) oo_insertInteger: (long) value
atIndex: (NSUInteger) index 

Definition at line 1558 of file OOCollectionExtractors.m.

1061 :(long)value atIndex:(NSUInteger)index
1062{
1063 [self insertObject:[NSNumber numberWithLong:value] atIndex:index];
1064}

◆ oo_insertQuaternion:atIndex:

- (void) oo_insertQuaternion: (Quaternion) value
atIndex: (NSUInteger) index 

Definition at line 1558 of file OOCollectionExtractors.m.

1092 :(Quaternion)value atIndex:(NSUInteger)index
1093{
1094 [self insertObject:OOPropertyListFromQuaternion(value) atIndex:index];
1095}

◆ oo_insertUnsignedInteger:atIndex:

- (void) oo_insertUnsignedInteger: (unsigned long) value
atIndex: (NSUInteger) index 

Definition at line 1558 of file OOCollectionExtractors.m.

1067 :(unsigned long)value atIndex:(NSUInteger)index
1068{
1069 [self insertObject:[NSNumber numberWithUnsignedLong:value] atIndex:index];
1070}

◆ oo_insertVector:atIndex:

- (void) oo_insertVector: (Vector) value
atIndex: (NSUInteger) index 

Definition at line 1558 of file OOCollectionExtractors.m.

1086 :(Vector)value atIndex:(NSUInteger)index
1087{
1088 [self insertObject:OOPropertyListFromVector(value) atIndex:index];
1089}

The documentation for this category was generated from the following files: