Sha256: 39f1c9931e4a1c5b5502d48eaa3fa4c1c06f81c89d357a876db015f7b48e19f9
Contents?: true
Size: 680 Bytes
Versions: 16
Compression:
Stored size: 680 Bytes
Contents
module Tabulo # Contains information about a particular {Cell} in the {Table}. # # @attr source [Object] The member of this {Cell}'s {Table}'s underlying enumerable from which # this {Cell}'s {Row} was derived. # @attr row_index [Integer] The positional index of the {Cell}'s {Row}. The topmost {Row} of the # {Table} has index 0, the next has index 1, etc.. The header row(s) are not counted for the purpose # of this numbering. # @attr column_index [Integer] The positional index of the {Cell}'s {Column}. The leftmost {Column} # of the {Table} has index 0, the next has index 1, etc.. CellData = Struct.new(:source, :row_index, :column_index) end
Version data entries
16 entries across 16 versions & 1 rubygems