Get the dimension at a specific index
type Second = At<[2, 3, 4], 1> // 3type OutOfBounds = At<[2, 3, 4], 3> // nevertype Negative = At<[2, 3, 4], -1> // never Copy
type Second = At<[2, 3, 4], 1> // 3type OutOfBounds = At<[2, 3, 4], 3> // nevertype Negative = At<[2, 3, 4], -1> // never
Get the dimension at a specific index