XCompile
    Preparing search index...

    Interface Unary

    interface Unary {
        expression: Expression[];
        kind: "unary";
        operator: "-" | "++" | "--" | "~" | "!" | "+" | "&" | "*";
    }
    Index

    Properties

    expression: Expression[]
    kind: "unary"
    operator: "-" | "++" | "--" | "~" | "!" | "+" | "&" | "*"