makeSet method
Creates a new set containing the given element
If the element already exists, this operation has no effect.
Implementation
@override
void makeSet(T element) {
super.makeSet(element);
_recordOperation('makeSet', element, null);
}
Creates a new set containing the given element
If the element already exists, this operation has no effect.
@override
void makeSet(T element) {
super.makeSet(element);
_recordOperation('makeSet', element, null);
}