ResultRow

constructor(fieldIndex: Map<Expression<*>, Int>, data: Array<Any?> = arrayOfNulls<Any?>(fieldIndex.size))

Creates a ResultRow for fieldIndex, with values stored in data.

The per-slot column types are derived from fieldIndex for this row. High-volume callers that create many rows for the same fieldIndex should instead use the create factory with a shared column-type array to avoid rebuilding it per row.