Sha256: 86b3c2bfcfab81944e9d6d4afb97e3806354ad6198545b04a8425a52d439914a
Contents?: true
Size: 691 Bytes
Versions: 26
Compression:
Stored size: 691 Bytes
Contents
unless (Hash[[[:test, :test]]] rescue false) require 'backports/tools' class << Hash alias_method :constructor_without_key_value_pair_form, :[] def [](*args) if args.length == 1 arg = args.first if (h = Backports.try_convert(arg, Hash, :to_hash)) return allocate.replace(h) end if (kvps = Backports.is_array?(arg)) h = {} kvps.each do |elem| next unless arr = Backports.is_array?(elem) next unless (1..2).include? arr.size h[arr.at(0)] = arr.at(1) end return h end end constructor_without_key_value_pair_form(*args) end end end
Version data entries
26 entries across 26 versions & 2 rubygems