Oolite 1.91.0.7644-241112-7f5034b
Loading...
Searching...
No Matches
NSMutableSet(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:
 

Detailed Description

Definition at line 342 of file OOCollectionExtractors.h.

Method Documentation

◆ oo_addBool:

- (void) oo_addBool: (BOOL) value

Definition at line 1558 of file OOCollectionExtractors.m.

1179 :(BOOL)value
1180{
1181 [self addObject:[NSNumber numberWithBool:value]];
1182}

◆ oo_addFloat:

- (void) oo_addFloat: (double) value

Definition at line 1558 of file OOCollectionExtractors.m.

1173 :(double)value
1174{
1175 [self addObject:[NSNumber numberWithDouble:value]];
1176}

◆ oo_addInteger:

- (void) oo_addInteger: (long) value

Definition at line 1558 of file OOCollectionExtractors.m.

1161 :(long)value
1162{
1163 [self addObject:[NSNumber numberWithLong:value]];
1164}
typedef long(ZCALLBACK *tell_file_func) OF((voidpf opaque

◆ oo_addQuaternion:

- (void) oo_addQuaternion: (Quaternion) value

Definition at line 1558 of file OOCollectionExtractors.m.

1192 :(Quaternion)value
1193{
1194 [self addObject:OOPropertyListFromQuaternion(value)];
1195}

◆ oo_addUnsignedInteger:

- (void) oo_addUnsignedInteger: (unsigned long) value

Definition at line 1558 of file OOCollectionExtractors.m.

1167 :(unsigned long)value
1168{
1169 [self addObject:[NSNumber numberWithUnsignedLong:value]];
1170}

◆ oo_addVector:

- (void) oo_addVector: (Vector) value

Definition at line 1558 of file OOCollectionExtractors.m.

1186 :(Vector)value
1187{
1188 [self addObject:OOPropertyListFromVector(value)];
1189}

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