Removing Items from List

Recently I had the need to remove an Item from a list and since that’s not an operator that is available out of the box, here’s a little procedure that lets you input a List and an Index to remove, and returns the remainder list.

NOTE: this removes a frame from a list, and you’d need to build a procedure like this for each type until a more generic Operator is available.

2 Likes

This is something I’ve occasionally also needed and came up with the same procedures for. Would be great to have a type agnostic function for this.