Class: RubyArguments::NullArguments
- Inherits:
-
RubyArguments
- Object
- RubyArguments
- RubyArguments::NullArguments
- Defined in:
- lib/ruby_arguments.rb
Overview
Constant Summary
Constants inherited from RubyArguments
Instance Attribute Summary
Attributes inherited from RubyArguments
Instance Method Summary collapse
- #initialize ⇒ void constructor private
- #null_arguments? ⇒ Boolean
Methods inherited from RubyArguments
#==, #[], #any?, #blank?, #deconstruct, #deconstruct_keys, #empty?, #eql?, #hash, #none?, null_arguments, #present?
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.
56 57 58 59 60 |
# File 'lib/ruby_arguments.rb', line 56 def initialize @args = [] @kwargs = {} @block = nil end |
Instance Method Details
#null_arguments? ⇒ Boolean
67 68 69 |
# File 'lib/ruby_arguments.rb', line 67 def null_arguments? true end |