(no title)
dwenzek | 2 years ago
As being declarative is about expectations, one translation could be:
I expect that "either both a and the condition to be true, or b true and the condition false" once the computation done.
a when: condition
b when: not condition
aatd86|2 years ago
This is a definition after all.
c = a if condition else c = b
Whether c is implicit or not doesn't matter too much.
I think the comment you respond to is still correct.
throwaway290|2 years ago