-
I don't fully understand the difference between regular outputs when using When would it be clever to use in-place outputs? What are typical use-cases? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It's mostly a matter of preference. In-place outputs are usually used if you have an array of data that should be modified in place, or when returning an array isn't possible (like in SignalFactory where signals are placed in-place). Both types behave the same way otherwise. |
Beta Was this translation helpful? Give feedback.
It's mostly a matter of preference. In-place outputs are usually used if you have an array of data that should be modified in place, or when returning an array isn't possible (like in SignalFactory where signals are placed in-place). Both types behave the same way otherwise.