Class: Docscribe::Types::MethodSignature
- Inherits:
-
Struct
- Object
- Struct
- Docscribe::Types::MethodSignature
- Defined in:
- lib/docscribe/types/signature.rb
Overview
Simplified view of an RBS method signature for Docscribe.
Instance Attribute Summary collapse
Instance Attribute Details
#param_types ⇒ Object
31 |
# File 'lib/docscribe/types/signature.rb', line 31 MethodSignature = Struct.new(:return_type, :param_types, :rest_positional, :rest_keywords, keyword_init: true) |
#rest_keywords ⇒ Object
31 |
# File 'lib/docscribe/types/signature.rb', line 31 MethodSignature = Struct.new(:return_type, :param_types, :rest_positional, :rest_keywords, keyword_init: true) |
#rest_positional ⇒ Object
31 |
# File 'lib/docscribe/types/signature.rb', line 31 MethodSignature = Struct.new(:return_type, :param_types, :rest_positional, :rest_keywords, keyword_init: true) |
#return_type ⇒ Object
31 |
# File 'lib/docscribe/types/signature.rb', line 31 MethodSignature = Struct.new(:return_type, :param_types, :rest_positional, :rest_keywords, keyword_init: true) |