ListBasedSet

class sknano.core.collections.ListBasedSet(iterable)[source] [edit on github][source]

Bases: collections.abc.Set

Alternate set implementation favoring space over speed and not requiring the set elements to be hashable.

Parameters:iterable (Iterable) –

Methods

isdisjoint(other) Return True if two sets have a null intersection.