Can we have an OrderedSet class in collections? An OrderedSet is a set that maintains insertion ordering. The current workaround is to use dict but I thought that using a dictionary as a set was too ugly to use in my library so I wrote an OrderedSet wrapper around it. It would be nice to have col…