Vector<T>.Item(Func<T, Boolean>) Property

Gets or sets the elements of a vector that match the specified condition.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual Vector<T> this[
	Func<T, bool> condition
] { get; set; }

Parameters

condition  Func<T, Boolean>
A delegate that represents a predicate that specifies the condition to test.

Property Value

Vector<T>
A Vector<T> that contains the elements in this instance for which condition returns true.

See Also