not

xod/core/not

Inverses a boolean value
not
@/not
Inverses a boolean value
INboolean
not
OUT
IN
OUTboolean

C++ implementation

#pragma XOD dirtieness disable

node {
    void evaluate(Context ctx) {
        auto x = getValue<input_IN>(ctx);
        emitValue<output_OUT>(ctx, !x);
    }
}