Method: Module#complies?
- Defined in:
- lib/y_support/typing/module/typing.rb
#complies?(other_module) ⇒ Boolean
Compliance inquirer (declared compliance + ancestors).
8 9 10 11 |
# File 'lib/y_support/typing/module/typing.rb', line 8 def complies?( other_module ) other_module.aT_kind_of Module, "other module" compliance.include? other_module end |