Logo

Programming-Idioms

History of Idiom 123 > diff from v6 to v7

Edit summary for version 7 by sphinxc0re:
New Rust implementation by user [sphinxc0re]

Version 6

2016-03-14, 11:00:23

Version 7

2016-12-13, 20:55:38

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Code
assert!(isConsistent);