set_diff : ''a list -> ''a list -> ''a list
- set_diff [] [1,2]; > val it = [] : int list - set_diff [1,2,3] [2,1]; > val it = [3] : int list
A high-performance implementation of finite sets may be found in structure HOLset.
ML equality types are used in the implementation of union and its kin. This limits its applicability to types that allow equality. For other types, typically abstract ones, use the ‘op_’ variants.