MultiStepMethodBase Type

Constructors

Constructor Description

MultiStepMethodBase()

Full Usage: MultiStepMethodBase()

Static members

Static member Description

MultiStepMethodBase.NewJaggedArray(i, k)

Full Usage: MultiStepMethodBase.NewJaggedArray(i, k)

Parameters:
    i : int - First dimension of the array (spine dimension).
    k : int - Second dimension of the array.

Returns: 'T[][] The newly created jagged array.

Creates a new jagged array.

i : int

First dimension of the array (spine dimension).

k : int

Second dimension of the array.

Returns: 'T[][]

The newly created jagged array.

MultiStepMethodBase.Swap(a, b)

Full Usage: MultiStepMethodBase.Swap(a, b)

Parameters:
    a : byref<'T> - First value.
    b : byref<'T> - Second value.

Swaps two values a and b.

a : byref<'T>

First value.

b : byref<'T>

Second value.