Skip to content

Delete Item from list by index or content

Latest
Compare
Choose a tag to compare
@jaavier jaavier released this 05 Nov 08:26
· 12 commits to main since this release
3a7aaed

# 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