Gets or sets the elements of a vector that match the specified condition.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Vector<T> this[
Func<T, bool> condition
] { get; set; }
Public Overridable Default Property Item (
condition As Func(Of T, Boolean)
) As Vector(Of T)
Get
Set
public:
virtual property Vector<T>^ default[Func<T, bool>^ condition] {
Vector<T>^ get (Func<T, bool>^ condition);
void set (Func<T, bool>^ condition, Vector<T>^ value);
}
abstract Item : Vector<'T> with get, set
override Item : Vector<'T> with get, set
Parameters
- condition
- Type: SystemFuncT, Boolean
A delegate that represents a predicate that
specifies the condition to test.
Property Value
Type:
VectorTA
VectorT that contains the elements in this instance
for which
condition returns
.
Reference