refining-empty 0.1.0

Refining based on emptiness.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Refining based on emptiness.

#![cfg_attr(not(feature = "std"), no_std)]
#![forbid(unsafe_code)]
#![deny(missing_docs)]

#[cfg(feature = "alloc")]
extern crate alloc;

pub mod empty;
pub mod prelude;