ILNumerics Ultimate VS

Cell  Conversion (InCell to Cell)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
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

public static implicit operator Cell (
	InCell A
)

Parameters

A
Type: ILNumericsInCell
Input array.

Return Value

Type: Cell
Local array with lifespan corresponding to the current scope.
Remarks

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.

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

Reference