gate-copy7(string)

hio/nwt-gus-hi/gate-copy7(string)

Allows values to pass through only if EN pin is set to true
gate-copy7(string)
@/gate-copy7(string)
Allows values to pass through only if EN pin is set to true
INstring
ENboolean
Whether values should pass through
gate-copy7(string)
IN
OUT
EN
OUTstring
To use the node in your project you should have the hio/nwt-gus-hi library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.

C++ implementation

node {
    void evaluate(Context ctx) {
        if (getValue<input_EN>(ctx))
            emitValue<output_OUT>(ctx, getValue<input_IN>(ctx));
    }
}

Tabular tests

ENINOUT
false"wtf"""
true"lalala""lalala"