/** Enum representing valid unary operators. */
export enum UnaryOperator
{
    /** Logical NOT operator (!) */
    Not,

    /** Double NOT operator ( !! ) used for type coercion */
    NotNot,
}
