# New Features
- Delete Item by index: You can use it in combination with IndexOf function.
func DeleteItemByIndex(listName string, index int) bool
- Delete item by content: Content must match exactly the content in your list
func DeleteItemByContent(listName string, item string) bool