ILNumerics - Technical Application Development
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Local array with lifespan corresponding to the current scope.
The new array is created from the source array A and can
be used multiple times in the function scope and get altered without modifying the source A.
Convert input array (immutable) to local array (mutable).
[ILNumerics Core Module]
Namespace: ILNumerics
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
Parameters
- A
- Type: ILNumericsInCell
Input array.
Return Value
Type: CellLocal array with lifespan corresponding to the current scope.
Remarks
Array conversions in ILNumerics do not require new memory. Elements are not copied unless multiple arrays reference the same memory and one of them is about to be changed. Only then a copy of the memory is done and the change is performed on the copy (lazy copy on write).
[ILNumerics Core Module]
See Also