Class: Rbxl::ReadOnlyCell

Inherits:
Data
  • Object
show all
Defined in:
lib/rbxl/read_only_cell.rb

Overview

Immutable cell value object used by the read-only worksheet path.

Produced during row-by-row iteration when cells are yielded without values_only. Implemented as a Data class so instances are frozen and hash-equal by value.

Instance Attribute Summary collapse

Instance Attribute Details

#coordinateObject (readonly)

Returns the value of attribute coordinate

Returns:

  • (Object)

    the current value of coordinate



12
# File 'lib/rbxl/read_only_cell.rb', line 12

ReadOnlyCell = Data.define(:coordinate, :value)

#valueObject (readonly)

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



12
# File 'lib/rbxl/read_only_cell.rb', line 12

ReadOnlyCell = Data.define(:coordinate, :value)