MSFIntVector

Objective-C

@interface MSFIntVector : 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 long)size;
-(unsigned long)capacity;
-(void)reserve: (unsigned long)n;
-(BOOL)isEmpty;
-(void)clear;
-(void)add: (int)x;
-(int)get: (int)i;
-(void)set: (int)i val: (int)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

Swift

class MSFIntVector : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    -(id)init;

    Swift

    init!()
  • Undocumented

    Declaration

    Objective-C

    -(unsigned long)size;

    Swift

    func size() -> UInt
  • Undocumented

    Declaration

    Objective-C

    -(unsigned long)capacity;

    Swift

    func capacity() -> UInt
  • Undocumented

    Declaration

    Objective-C

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

    Swift

    func reserve(_ n: UInt)
  • 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: (int)x;

    Swift

    func add(_ x: Int32)
  • Undocumented

    Declaration

    Objective-C

    -(int)get: (int)i;

    Swift

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

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

    -(void)dealloc;

    Swift

    func dealloc()