класс ActiveSupport::OrderedOptions
Упорядоченные параметры
OrderedOptions наследуется от Hash и предоставляет динамические методы доступа.
С помощью Hash, пары ключ-значение обычно управляются так:
h = {}
h[:boy] = 'John'
h[:girl] = 'Mary'
h[:boy] # => 'John'
h[:girl] # => 'Mary'
h[:dog] # => nil
Используя OrderedOptions, вышеприведенный код можно записать так:
h = ActiveSupport::OrderedOptions.new h.boy = 'John' h.girl = 'Mary' h.boy # => 'John' h.girl # => 'Mary' h.dog # => nil
Чтобы сгенерировать исключение при пустом значении, добавьте символ восклицания к имени ключа, например:
h.dog! # => raises KeyError: :dog is blank
Общедоступные методы экземпляра
# File activesupport/lib/active_support/ordered_options.rb, line 41 def [](key) super(key.to_sym) end
Вызывает метод базового класса
Также алиас: _get
# File activesupport/lib/active_support/ordered_options.rb, line 37 def []=(key, value) super(key.to_sym, value) end
Вызывает метод базового класса
_get(key)
Псевдоним для: []
# File activesupport/lib/active_support/ordered_options.rb, line 45 def dig(key, *identifiers) super(key.to_sym, *identifiers) end
Вызывает метод базового класса
# File activesupport/lib/active_support/ordered_options.rb, line 64 def extractable_options? true end
# File activesupport/lib/active_support/ordered_options.rb, line 68
def inspect
"#<#{self.class.name} #{super}>"
end # File activesupport/lib/active_support/ordered_options.rb, line 49
def method_missing(method, *args)
if method.end_with?("=")
self[method.name.chomp("=")] = args.first
elsif method.end_with?("!")
name_string = method.name.chomp("!")
self[name_string].presence || raise(KeyError.new(":#{name_string} is blank"))
else
self[method.name]
end
end # File activesupport/lib/active_support/ordered_options.rb, line 60 def respond_to_missing?(name, include_private) true end
© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.