Interface IVec<T>
Interface for vector types with generic element type.
public interface IVec<T>
Type Parameters
T
The type of elements in the vector
- Extension Methods
Properties
this[int]
Gets or sets the element at the specified index.
T this[int index] { get; set; }
Parameters
index
intThe zero-based index of the element to get or set.
Property Value
- T
The element at the specified index.
Rank
Dimension (i.e. Size) of the Vector.
int Rank { get; }