class Coopy::CellInfo
Attributes
category[RW]
category_given_tr[RW]
conflicted[RW]
lvalue[RW]
meta[RW]
pretty_separator[RW]
pretty_value[RW]
pvalue[RW]
raw[RW]
rvalue[RW]
separator[RW]
updated[RW]
value[RW]
Public Class Methods
new()
click to toggle source
# File lib/lib/coopy/cell_info.rb, line 7 def initialize end
Public Instance Methods
to_s()
click to toggle source
# File lib/lib/coopy/cell_info.rb, line 24 def to_s return @value if !@updated return _hx_str(@lvalue) + "::" + _hx_str(@rvalue) if !@conflicted _hx_str(@pvalue) + "||" + _hx_str(@lvalue) + "::" + _hx_str(@rvalue) end