Vector<T>.MapInPlace(Func<Int32, T, T>) Method

Applies a function in-place to the elements of a vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual Vector<T> MapInPlace(
	Func<int, T, T> function
)

Parameters

function  Func<Int32, T, T>
A delegate that represents a function of one variable

Return Value

Vector<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionfunction is null.

See Also