Module: Unparser::AbstractType::AbstractMethodDeclarations
- Defined in:
- lib/unparser/abstract_type.rb
Instance Method Summary collapse
-
#abstract_method(*names) ⇒ self
Create abstract instance methods.
-
#abstract_singleton_method(*names) ⇒ self
private
Create abstract singleton methods.
Instance Method Details
#abstract_method(*names) ⇒ self
Create abstract instance methods
64 65 66 67 |
# File 'lib/unparser/abstract_type.rb', line 64 def abstract_method(*names) names.each(&method(:create_abstract_instance_method)) self end |
#abstract_singleton_method(*names) ⇒ self
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Create abstract singleton methods
84 85 86 87 |
# File 'lib/unparser/abstract_type.rb', line 84 def abstract_singleton_method(*names) names.each(&method(:create_abstract_singleton_method)) self end |