Gate

[flow/Gate]


Forwards signal received via data when corresponding signal received via open is true. Example A:

  1. "A"@0 received via data

  2. false@0 received via open

  3. No signal is sent via data (output)

Example B:

  1. true@0 received via open

  2. "B"@0 received via data

  3. "B"@0 is sent via data (output)


Keywords: filter, stop

Input ports

  • data: any

    Receives the signal to be forwarded / filtered.

  • open: boolean

    Whether to forward the signal received via data.

Output ports

  • data: any

    Forwarded / filtered signal

Last updated