Method: Vedeu::Buffers::View#write
- Defined in:
- lib/vedeu/buffers/view.rb
#write(value) ⇒ NilClass|void (private)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Write the value into the respective cell as defined by the position attribute.
104 105 106 |
# File 'lib/vedeu/buffers/view.rb', line 104 def write(value) current[row(value)][column(value)] = value end |