Method: Module#method_clash?
- Defined in:
- lib/core/facets/module/method_clash.rb
#method_clash?(other) ⇒ Boolean
Uses #method_clash to return true or false if there are method name clashes.
60 61 62 63 |
# File 'lib/core/facets/module/method_clash.rb', line 60 def method_clash?(other) c = method_clash(other) !c.empty? end |