NSMutableArray.as constructor

NSMutableArray.as(
  1. ObjCObject other
)

Constructs a NSMutableArray that points to the same underlying object as other.

Implementation

NSMutableArray.as(objc.ObjCObject other) : object$ = other {
  assert(isA(object$));
}