get<T> method

T get<T>(
  1. int index
)

Provides the ability to extract a data element from the represented CArray at the given index.

Implementation

T get<T>(int index) => elementAt(index) as T;