# File lib/hashery/orderedhash.rb, line 68 def delete(key) if has_key? key index = @keys.index(key) @keys.delete_at(index) end super(key) end