RowMergerHelper

implicit
class RowMergerHelper(rows: Seq[Row])
class Object
trait Matchable
class Any

Value members

Concrete methods

def fixupIndexes: Seq[Row]

This function may not work on Rows with mixed explicit indexes if it has non-explicit indexes too! So [Row(5), Row(), Row(1), Row(7), Row(6)] would possibly broke the output bcs 5 + 1 and 6 collides. The given input should be all explicit or all implicit indexed.

This function may not work on Rows with mixed explicit indexes if it has non-explicit indexes too! So [Row(5), Row(), Row(1), Row(7), Row(6)] would possibly broke the output bcs 5 + 1 and 6 collides. The given input should be all explicit or all implicit indexed.

def merge: Seq[Row]

The given rows list should be explicitly indexed

The given rows list should be explicitly indexed

def moveTo(x: Int, y: Int): Seq[Row]