Whether the set represent nothing
(self)
| 28 | """Represent a set of integer in one dimension.""" |
| 29 | |
| 30 | def is_nothing(self): |
| 31 | """Whether the set represent nothing""" |
| 32 | return _ffi_api.IntSetIsNothing(self) |
| 33 | |
| 34 | def is_everything(self): |
| 35 | """Whether the set represent everything""" |
no outgoing calls