Expose the dataflow block output variables as global ones. Parameters ---------- vars: Tuple[Var] The output variables of a dataflow block.
(*vars: tuple[Var])
| 392 | |
| 393 | |
| 394 | def output(*vars: tuple[Var]) -> None: |
| 395 | """Expose the dataflow block output variables as global ones. |
| 396 | Parameters |
| 397 | ---------- |
| 398 | vars: Tuple[Var] |
| 399 | The output variables of a dataflow block. |
| 400 | """ |
| 401 | return _ffi_api.DataflowBlockOutput(vars) # type: ignore[attr-defined] # pylint: disable=no-member |
| 402 | |
| 403 | |
| 404 | ################################## Ops ################################# |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…