module Kernel
Public Instance Methods
eigenclass()
click to toggle source
# File lib/openstax/utilities/ruby.rb, line 3 def eigenclass class << self self end end
includes_module?(mod)
click to toggle source
# File lib/openstax/utilities/ruby.rb, line 9 def includes_module?(mod) eigenclass.included_modules.include?(mod) end