row

fun List<List<Rectangle>>.row(index: Int): List<Rectangle>(source)

Retrieves the row from a 2D list of Rectangle objects at the specified index.

Receiver

The 2D list of Rectangle objects.

Return

A list of Rectangle objects representing the row at the given index.

Parameters

index

The index of the row to retrieve. Must be in the valid range of indices for the list.