Add 'static_assert' macro
This commit is contained in:
parent
643b688384
commit
d51d72377e
|
@ -1 +1,2 @@
|
||||||
pub mod board;
|
pub mod board;
|
||||||
|
pub mod utils;
|
||||||
|
|
2
src/utils/mod.rs
Normal file
2
src/utils/mod.rs
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
pub mod static_assert;
|
||||||
|
pub use static_assert::*;
|
25
src/utils/static_assert.rs
Normal file
25
src/utils/static_assert.rs
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
//! Static assert.
|
||||||
|
|
||||||
|
/// Assert a condition at compile-time.
|
||||||
|
///
|
||||||
|
/// See [RFC 2790] for potential addition into Rust itself.
|
||||||
|
///
|
||||||
|
/// [RFC 2790]: https://github.com/rust-lang/rfcs/issues/2790
|
||||||
|
///
|
||||||
|
/// # Examples
|
||||||
|
///
|
||||||
|
/// ```
|
||||||
|
/// use seer::utils::static_assert;
|
||||||
|
///
|
||||||
|
/// static_assert!(42 > 0);
|
||||||
|
/// ```
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! static_assert {
|
||||||
|
($($tt:tt)*) => {
|
||||||
|
#[allow(dead_code)]
|
||||||
|
const _: () = assert!($($tt)*);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// I want it namespaced, even though it is exported to the root of the crate by `#[macro_export]`.
|
||||||
|
pub use static_assert;
|
Loading…
Reference in a new issue