Add: adds new element to the set
(item T)
| 18 | type Set[T comparable] interface { |
| 19 | // Add: adds new element to the set |
| 20 | Add(item T) |
| 21 | // Delete: deletes the passed element from the set if present |
| 22 | Delete(item T) |
| 23 | // Len: gives the length of the set (total no. of elements in set) |
no outgoing calls