method

delete

delete(key)
public

No documentation available.

# File activesupport/lib/active_support/ordered_hash.rb, line 23
      def delete(key)
        pair = assoc(key)
        pair ? array_index = index(pair) : nil
        array_index ? delete_at(array_index).last : nil
      end