any

xod/core/any

Pulses on output when any input recieves a pulse
any
@/any
Pulses on output when any input recieves a pulse
IN1pulse
IN2pulse (variadic)
any
OUT
IN1
IN2
OUTpulse

C++ implementation

node {
    void evaluate(Context ctx) {
        bool p1 = isInputDirty<input_IN1>(ctx);
        bool p2 = isInputDirty<input_IN2>(ctx);
        if (p1 || p2)
            emitValue<output_OUT>(ctx, true);
    }
}