Assert signal is stable during certain duration

In reply to ben@SystemVerilog.us:

Hi Ben,

Would it be okay to use until_with in this case?

($rose(a), v=b) |=> (b==v until_with $fell(a));

Complementarily,

($fell(a), v=b) |=> (b==v until_with $rose(a));

Thank you for your response.