Logo

Programming-Idioms

  • C
  • Js

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.

console.assert(_isConsistent);
#include <assert.h>
assert(isConsistent());

If NDEBUG is defined, the assert macro becomes void. Therefore, such expressions must not have side effects.
(assert (isConsistent))

Tests for truthy.

New implementation...
< >
programming-idioms.org