Report this content
We want the Dreams coMmunity to be a safe, diverse and tolerant place for everyone, no matter their age, gender, race, sexual orientation or otherwise. If you believe this content to contradict these principles, you can file a report for our coMmunity teams to investigate.
Note that misuse of the reporting tool will not be tolerated.Item being reported:
I'd like to output one of 2 input signals based on a boolean condition of a 3rd, like a ternary expression e.g. the following:
return x < y ? x : y
Even better is if there was a good way to handle multiple cases like a switch statement.