Flowdock
method

determine_encoding_of_strings_in_array

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: Quoting
determine_encoding_of_strings_in_array(value) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb, line 134
          def determine_encoding_of_strings_in_array(value)
            case value
            when ::Array then determine_encoding_of_strings_in_array(value.first)
            when ::String then value.encoding
            end
          end
Register or log in to add new notes.