type_level_logic/strong/
mod.rs

1//! "Strongly" enforced (non-SFINAE-style) type operators. Here, "strong" means that if you use
2//! a type operator from this module, Rust will complain if it can't guarantee an `impl` for it
3//! and you haven't listed it as a trait bound in a `where` clause.
4
5pub mod boolean;
6pub mod ternary;
7pub mod balanced;