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 2 months ago
Was this helpful?