method
delete

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