Class: ConvenientService::Support::Arguments::NullArguments Private
- Inherits:
-
ConvenientService::Support::Arguments
- Object
- ConvenientService::Support::Arguments
- ConvenientService::Support::Arguments::NullArguments
- Defined in:
- lib/convenient_service/support/arguments/null_arguments.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary
Attributes inherited from ConvenientService::Support::Arguments
Instance Method Summary collapse
- #initialize ⇒ void constructor private
- #null_arguments? ⇒ Boolean private
Methods inherited from ConvenientService::Support::Arguments
#==, #[], #any?, #none?, null_arguments
Constructor Details
#initialize ⇒ void
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.
13 14 15 16 17 |
# File 'lib/convenient_service/support/arguments/null_arguments.rb', line 13 def initialize @args = [] @kwargs = {} @block = nil end |
Instance Method Details
#null_arguments? ⇒ Boolean
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.
22 23 24 |
# File 'lib/convenient_service/support/arguments/null_arguments.rb', line 22 def null_arguments? true end |