util.set: Add missing remove function in Teal spec

This commit is contained in:
Kim Alvefur 2023-03-31 23:19:07 +02:00
parent 10431cfec6
commit aa0d6f297d

View file

@ -4,6 +4,7 @@ local record lib
contains : function<T> (Set<T>, T) : boolean
contains_set : function<T> (Set<T>, Set<T>) : boolean
items : function<T> (Set<T>) : function<T> (Set<T>, T) : T
remove : function<T> (Set<T>, T)
add_list : function<T> (Set<T>, { T })
include : function<T> (Set<T>, Set<T>)
exclude : function<T> (Set<T>, Set<T>)