Rows.opIndex

struct Rows(Number)
@safe pure nothrow @property
const(Number[])
opIndex
const
(
size_t index
)
in { assert (index >= 0, "Negative index given to Rows opIndex!"); assert (index < length, "Out of bounds index given to Rows opIndex!"); }
if (
isNumeric!Number
)

Parameters

index
Type: size_t

An index for a row in the range.

Return Value

Type: const(Number[])

A row at an index in the range.

Meta