LatticePropertiesContainer#

class LatticePropertiesContainer[source]#

Bases: PropertiesContainer

The container class for lattice structure properties.

Right now, this is simply an empty subclass, but lattice-specific properties might be exposed as attributes in the future.

Methods

add(value)#

Add an element.

clear()#

This is slow (creates N new iterators!) but effective.

discard(value)#

Remove an element. Do not raise an exception if absent.

isdisjoint(other)#

Return True if two sets have a null intersection.

pop()#

Return the popped value. Raise KeyError if empty.

remove(value)#

Remove an element. If not a member, raise a KeyError.