method

delete

delete(key)
public

No documentation available.

# File activesupport/lib/active_support/ordered_hash.rb, line 66
      def delete(key)
        if has_key? key
          index = @keys.index(key)
          @keys.delete_at index
        end
        super
      end