from enum import Enum class FilterUnaryOperator(Enum): """Represents the unary operators used in filtering procedures.""" NOT = 0
NOT
0
Logical NOT operator, negates a condition.
Last updated 9 days ago
Was this helpful?