класс ActiveSupport::OrderedOptions
Обычно пары ключ-значение обрабатываются примерно так:
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: key not found: :dog
Публичные методы экземпляров
# File activesupport/lib/active_support/ordered_options.rb, line 33 def [](key) super(key.to_sym) end
Вызывает метод суперкласса
Также алиасируется как: _get
# File activesupport/lib/active_support/ordered_options.rb, line 29 def []=(key, value) super(key.to_sym, value) end
Вызывает метод суперкласса
_get(ключ)
Псевдоним для: []
# File activesupport/lib/active_support/ordered_options.rb, line 37
def method_missing(name, *args)
name_string = name.to_s
if name_string.chomp!('=')
self[name_string] = args.first
else
bangs = name_string.chomp!('!')
if bangs
fetch(name_string.to_sym).presence || raise(KeyError.new("#{name_string} is blank."))
else
self[name_string]
end
end
end # File activesupport/lib/active_support/ordered_options.rb, line 52 def respond_to_missing?(name, include_private) true end
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.