PTVectorAnnot

@interface PTVectorAnnot : NSObject
{


}




- (unsigned long)size;
- (unsigned long)capacity;
- (void)reserve: (unsigned long)n;
- (BOOL)isEmpty;
- (void)clear;
- (void)add: (PTAnnot*)x;
- (PTAnnot*)get: (int)i;
- (void)set: (int)i val:  (PTAnnot*)val;
- (instancetype)init;
@end

Undocumented

  • 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: (PTAnnot*)x;

    Swift

    func add(_ x: PTAnnot!)
  • Undocumented

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

    - (instancetype)init;

    Swift

    init!()