-
Notifications
You must be signed in to change notification settings - Fork 3
If and only if checks #76
Copy link
Copy link
Open
Labels
Effort: ⭐StraightforwardStraightforwardTask: EnhancementNew feature or requestNew feature or request
Description
A relatively common formula is
expect_cond(foo, bar)
expect_cond(bar, foo)This is a bit verbose, particularly so when foo and bar are complicated expressions. We should allow
expect_iff(foo, bar)or something like
expect_cond(foo, bar, .cond="if") # foo --> bar
expect_cond(foo, bar, .cond="iff") # foo <-> barReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Effort: ⭐StraightforwardStraightforwardTask: EnhancementNew feature or requestNew feature or request