Skip to main content

reifydb_value/
assertions.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4#[macro_export]
5macro_rules! reifydb_assertions {
6	($($body:tt)*) => {
7		#[cfg(reifydb_assertions)]
8		{
9			$($body)*
10		}
11	};
12}