1 // 2 // MLMultiArray+Copy.h 3 // 4 // Copyright © 2024 Apple Inc. All rights reserved. 5 // 6 // Please refer to the license found in the LICENSE file in the root directory of the source tree. 7 8 #import <CoreML/CoreML.h> 9 10 NS_ASSUME_NONNULL_BEGIN 11 12 @interface MLMultiArray (Copy) 13 14 /// Copies this into another `MLMutiArray`. 15 /// 16 /// @param dstMultiArray The destination `MLMutiArray`. 17 - (void)copyInto:(MLMultiArray*)dstMultiArray; 18 19 @end 20 21 NS_ASSUME_NONNULL_END 22