Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 403 Bytes

Get.array.float.md

File metadata and controls

32 lines (18 loc) · 403 Bytes

Get<>(array, float)

Returns the value (reference) from array at index.

generic get<>(this array array, float index)

Parameters

array

Type: array

index

Type: float

Returns

generic

The value at index.

Examples

array<float> arr = [3, 2, 1]
inspect(arr.get(1)) // 2