module Tins::Eigenclass

def eigenclass

Returns the eigenclass of this object.
def eigenclass
end

def eigenclass_eval(&block)

Evaluates the _block_ in context of the eigenclass of this object.
def eigenclass_eval(&block)
  eigenclass.instance_eval(&block)
end