class Import_Module::Object

Import_Module::Stack.new()

Public Instance Methods

adopt(mod) click to toggle source
# File lib/algebra/import-module.rb, line 409
def adopt(mod)
  (class << self; self; end).adopt_module(mod)
  self
end
import(mod) { |self| ... } click to toggle source
# File lib/algebra/import-module.rb, line 403
def import(mod)
  (class << self; self; end).import_module(mod) do
    yield self
  end
end