NTElementVector

@interface NTElementVector : NSObject
{
	/** @internal:nodoc: */
	void *swigCPtr;
	/** @internal:nodoc: */
	BOOL swigCMemOwn;
}
/** @internal:nodoc: */
-(void*)getCptr;
/** @internal:nodoc: */
-(id)initWithCptr: (void*)cptr swigOwnCObject: (BOOL)ownCObject;
-(id)init;
-(unsigned int)size;
-(unsigned int)capacity;
-(void)reserve: (unsigned int)n;
-(BOOL)isEmpty;
-(void)clear;
-(void)add: (NTElement*)x;
-(NTElement*)get: (int)i;
-(void)set: (int)i val: (NTElement*)val;
/**
 * Returns the raw pointer to the object. This is used internally by the SDK.
 * @return The internal pointer of the object.
 */
/** @internal:nodoc: */
-(long long)swigGetRawPtr;

-(void)dealloc;

@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    -(id)init;

    Swift

    init!()
  • Undocumented

    Declaration

    Objective-C

    -(unsigned int)size;

    Swift

    func size() -> UInt32
  • Undocumented

    Declaration

    Objective-C

    -(unsigned int)capacity;

    Swift

    func capacity() -> UInt32
  • Undocumented

    Declaration

    Objective-C

    -(void)reserve: (unsigned int)n;

    Swift

    func reserve(_ n: UInt32)
  • Undocumented

    Declaration

    Objective-C

    -(BOOL)isEmpty;

    Swift

    func isEmpty() -> Bool
  • Undocumented

    Declaration

    Objective-C

    -(void)clear;

    Swift

    func clear()
  • Undocumented

    Declaration

    Objective-C

    -(void)add: (NTElement*)x;

    Swift

    func add(_ x: NTElement!)
  • Undocumented

    Declaration

    Objective-C

    -(NTElement*)get: (int)i;

    Swift

    func get(_ i: Int32) -> NTElement!
  • Undocumented

    Declaration

    Objective-C

    -(void)set: (int)i val: (NTElement*)val;

    Swift

    func set(_ i: Int32, val: NTElement!)
  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;