class Object

Public Instance Methods

thaw() click to toggle source
# File lib/thaw/object.rb, line 2
def thaw
  Fiddle::Pointer.new(object_id * 2)[1] &= ~(1 << 3)
  self
end
thawed?() click to toggle source
# File lib/thaw/object.rb, line 7
def thawed?
  !frozen?
end