Creates an UNTIL (U) formula.
U
Example: state((s)=>s.requesting).until(state((s)=>s.granted))
state((s)=>s.requesting).until(state((s)=>s.granted))
Until<T> until<T>(Formula<T> left, Formula<T> right) { return Until<T>(left, right); }