Method: Chewy::Search::Parameters::StringArrayStorage#update!
- Defined in:
- lib/chewy/search/parameters/concerns/string_array_storage.rb
#update!(other_value) ⇒ Array<String, Symbol>
Unions two arrays.
11 12 13 |
# File 'lib/chewy/search/parameters/concerns/string_array_storage.rb', line 11 def update!(other_value) @value = value | normalize(other_value) end |