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?, #deconstruct, #deconstruct_keys, #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.
18 19 20 21 22 |
# File 'lib/convenient_service/support/arguments/null_arguments.rb', line 18 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.
27 28 29 |
# File 'lib/convenient_service/support/arguments/null_arguments.rb', line 27 def null_arguments? true end |