You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These are not traditional assertions used for sanity checking that are optimized out in release builds. There are cases such as the asserts in std::cell::RefCell that are performing a useful sanity check, but should not be in a release build. By renaming these, we can make room for more traditional assertions.
I would suggest enforce!(condition) and enforce_eq!(a, b).