I get compiler errors when I try to define a set of type:
Set<T: Hashable>The error I get is ('Expected > to complete generic argument list')
I was under the impression that all a set requires of a member is conformance to Hashable. Is there a way to define a generic set? I'm trying to define a method that takes in a set of an arbitrary type T that conforms to hashable, and returns a transformed set of the same type T.