Drop value at specified index.
Drop value at specified index.
index of value to drop
new row without specified value
Get value at index.
Get value at index.
index of value
value at index
Create a new row from specified indices.
Create a new row from specified indices.
indices to create new row with
new row with only selected values
Add a value to the row.
Add a value to the row.
value to add
row with the new value
Get value at index.
Get value at index.
Alias for Row#get
index of value
value at index
Get value at index as an array.
Get value at index as an array.
inner type of the array
index of value
array value
Get value at index as specified type.
Get value at index as specified type.
type of value
index of value
value at index cast to given type
Get value at index as a double.
Get value at index as a double.
index of value
double value
Get value at index as an int.
Get value at index as an int.
index of value
int value
Get value at index as a long.
Get value at index as a long.
index of value
long value
Get value at index as a string.
Get value at index as a string.
index of value
string value
Get value at index as a vector.
Get value at index as a vector.
index of value
vector value
(Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.
(Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.
Add value to row with a user defined function.
Add value to row with a user defined function.
row selectors to generate inputs to function
user defined function to call
row with calculated value added
Base trait for row data.