Logo

Programming-Idioms

  • Python
  • Dart

Idiom #34 Create a set of objects

Declare and initialize a set x containing unique objects of type T.

var x = new Set<T>();
class T:
    def __init__(self, x):
        self.x = x
    def __hash__(self):
        return hash(self.x)
    def __eq__(self, t):
        return self.x == t.x
x = {T('abc'), T(123), T(lambda: ...)}
class T:
   ...

s = set(T() for _ in range(x))

`...` is a placeholder, `pass` can also be used
class T(object):
    pass

x = set(T())
#include <unordered_set>
std::unordered_set<T, hasher, eq> x;

Using a custom hasher and eq (equality checking function)

New implementation...