Applies a function in-place to the elements of a vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Vector<T> MapInPlace(
Func<int, T, T> function
)
Public Overridable Function MapInPlace (
function As Func(Of Integer, T, T)
) As Vector(Of T)
public:
virtual Vector<T>^ MapInPlace(
Func<int, T, T>^ function
)
abstract MapInPlace :
function : Func<int, 'T, 'T> -> Vector<'T>
override MapInPlace :
function : Func<int, 'T, 'T> -> Vector<'T>
Parameters
- function
- Type: SystemFuncInt32, T, T
A delegate that represents a function of one variable
Return Value
Type:
VectorTA reference to this instance.
Reference