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