How can I delete a tuple with key from a list?
Ex:
TupleList = [ {apple, {0,0,0}}, {orange, {0,0,0}}, {bannana, {0,0,0}}]
Then I need to delete the tuple whos key matches orange.
So I should get back
[ {apple, {0,0,0}}, {bannana, {0,0,0}}]
Im looking for a BIF instead of a function as I am using right now.
Thanks and Regards