2023-05-23 00:08:34 +00:00
|
|
|
///
|
|
|
|
/// Active code comment to assert that `condition` should always be true.
|
|
|
|
///
|
|
|
|
/// Safety-checked behavior is invoked where `condition` evaluates to false.
|
|
|
|
///
|
2023-04-19 00:25:35 +01:00
|
|
|
pub fn assert(condition: bool) void {
|
2023-05-23 00:08:34 +00:00
|
|
|
if (!condition) {
|
|
|
|
unreachable;
|
|
|
|
}
|
2023-04-19 00:25:35 +01:00
|
|
|
}
|