Class: Xberg::TableDiff

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTableDiff

Returns a new instance of TableDiff.

Parameters:

  • from_index: (Integer)
  • to_index: (Integer)
  • cell_changes: (Array[CellChange])


1756
# File 'sig/types.rbs', line 1756

def initialize: (from_index: Integer, to_index: Integer, cell_changes: Array[CellChange]) -> void

Instance Attribute Details

#cell_changesArray[CellChange] (readonly)

Returns the value of attribute cell_changes.

Returns:



1754
1755
1756
# File 'sig/types.rbs', line 1754

def cell_changes
  @cell_changes
end

#from_indexInteger (readonly)

Returns the value of attribute from_index.

Returns:

  • (Integer)


1752
1753
1754
# File 'sig/types.rbs', line 1752

def from_index
  @from_index
end

#to_indexInteger (readonly)

Returns the value of attribute to_index.

Returns:

  • (Integer)


1753
1754
1755
# File 'sig/types.rbs', line 1753

def to_index
  @to_index
end