Gets or sets the elements of the vector with the specified indexes.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Vector<T> this[
IEnumerable<int> indexes
] { get; set; }
Public Overridable Default Property Item (
indexes As IEnumerable(Of Integer)
) As Vector(Of T)
Get
Set
public:
virtual property Vector<T>^ default[IEnumerable<int>^ indexes] {
Vector<T>^ get (IEnumerable<int>^ indexes);
void set (IEnumerable<int>^ indexes, Vector<T>^ value);
}
abstract Item : Vector<'T> with get, set
override Item : Vector<'T> with get, set
Parameters
- indexes
- Type: System.Collections.GenericIEnumerableInt32
A sequence of integers.
Return Value
Type:
VectorTA
VectorT containing a sequence of elements of this instance
whose index is the corresponding value in
indexes.
Reference