Sha256: 7257797f303ef9272ca059c5045e852ad61633e36fbd57491c3f55a0680ee23c

Contents?: true

Size: 1.19 KB

Versions: 14

Compression:

Stored size: 1.19 KB

Contents

# OrderedHash is namespaced to prevent conflicts with other implementations
module ActiveSupport
  # Hash is ordered in Ruby 1.9!
  if RUBY_VERSION >= '1.9'
    OrderedHash = ::Hash
  else
    class OrderedHash < Array #:nodoc:
      def []=(key, value)
        if pair = assoc(key)
          pair.pop
          pair << value
        else
          self << [key, value]
        end
        value
      end

      def [](key)
        pair = assoc(key)
        pair ? pair.last : nil
      end

      def delete(key)
        pair = assoc(key)
        pair ? array_index = index(pair) : nil
        array_index ? delete_at(array_index).last : nil
      end

      def keys
        collect { |key, value| key }
      end

      def values
        collect { |key, value| value }
      end

      def to_hash
        returning({}) do |hash|
          each { |array| hash[array[0]] = array[1] }
        end
      end

      def has_key?(k)
        !assoc(k).nil?
      end

      alias_method :key?, :has_key?
      alias_method :include?, :has_key?
      alias_method :member?, :has_key?

      def has_value?(v)
        any? { |key, value| value == v }
      end

      alias_method :value?, :has_value?
    end
  end
end

Version data entries

14 entries across 13 versions & 8 rubygems

Version Path
p8-castronaut-0.6.1.1 vendor/activesupport/lib/active_support/ordered_hash.rb
relevance-castronaut-0.6.0 vendor/activesupport/lib/active_support/ordered_hash.rb
relevance-castronaut-0.6.1 vendor/activesupport/lib/active_support/ordered_hash.rb
relevance-castronaut-0.7.4 vendor/activesupport/lib/active_support/ordered_hash.rb
relevance-castronaut-0.7.5 vendor/activesupport/lib/active_support/ordered_hash.rb
nbudin-castronaut-0.7.5 vendor/activesupport/lib/active_support/ordered_hash.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activesupport/lib/active_support/ordered_hash.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activesupport/pkg/activesupport-2.2.2/lib/active_support/ordered_hash.rb
factorylabs-castronaut-0.7.5 vendor/activesupport/lib/active_support/ordered_hash.rb
activesupport-2.2.3 lib/active_support/ordered_hash.rb
activesupport-2.2.2 lib/active_support/ordered_hash.rb
mack-active_record-0.8.2 lib/gems/activesupport-2.2.2/lib/active_support/ordered_hash.rb
mack-facets-0.8.3 lib/gems/activesupport-2.2.2/lib/active_support/ordered_hash.rb
mack-facets-0.8.3.1 lib/gems/activesupport-2.2.2/lib/active_support/ordered_hash.rb