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

Applies a function to the elements of a vector.

Definition

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

Parameters

function  Func<T, U, T>
A delegate that represents a function of one variable
second  Vector<U>
A vector whose elements serve as the second argument to the function.

Type Parameters

U

Return Value

Vector<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionfunction is null.

See Also