Skip to main content

refining_empty/
lib.rs

1//! Refining based on emptiness.
2
3#![cfg_attr(not(feature = "std"), no_std)]
4#![forbid(unsafe_code)]
5#![deny(missing_docs)]
6
7#[cfg(feature = "alloc")]
8extern crate alloc;
9
10pub mod empty;
11pub mod prelude;