hyperion::assert#

hyperion::assert is a C++20 library for all manner of runtime assertions. It includes assertions for verifying contract requirements (i.e. pre-conditions, post-conditions), assertions for verifying error conditions have not occurred, debug assertions, optimization suggestions, and more, all with stacktrace support, user-configurable handling, optional syntax highlighting, and expression decomposition.

Example#
1#include <hyperion/assert.h>
2
3auto example() {
4    const auto lambda = []() {
5        return 4;
6    };
7    HYPERION_ASSERT_DEBUG(2 + lambda() == 7, "lambda() wasn't {}", 5);
8}
HYPERION_ASSERT_DEBUG assertion failure output example

See the Quick Start Guide for how to get started using hyperion::assert.

For an overview of each module, see the links in the left sidebar or below.

Getting Started

Quick Reference