Copies the MArray a into the receiver. */
| 50 | |
| 51 | /** Copies the MArray a into the receiver. */ |
| 52 | void initAsCopyOf(const MArray &a, bool isMutable) { |
| 53 | MCollection::initAsCopyOf(a, isMutable); |
| 54 | _array = a._array; |
| 55 | _vec = a._vec; |
| 56 | } |
| 57 | |
| 58 | Array baseArray() const { |
| 59 | return _array; |
nothing calls this directly
no outgoing calls
no test coverage detected