Table of Contents

Interface IVec<T>

Namespace
Hi.Geom
Assembly
HiGeom.dll

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 int

The 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; }

Property Value

int