Method: OFlow::Box#thaw

Defined in:
lib/oflow/box.rb

#thawBox

Makes a copy of the frozen contents and the Box to allow modifications.

Returns:

  • (Box)

    new Box.



93
94
95
96
# File 'lib/oflow/box.rb', line 93

def thaw()
  # Don't freeze the contents.
  Box.new(thaw_value(@contents, true), @tracker)
end