method

process_array

process_array(value)
private

No documentation available.

# File activesupport/lib/active_support/core_ext/hash/conversions.rb, line 256
      def process_array(value)
        value.map! { |i| deep_to_h(i) }
        value.length > 1 ? value : value.first
      end