type_switch 0.1.0

A simple utility for compile-time unions that let you switch between different types.
Documentation
1
2
3
4
5
6
7
8
#![doc = include_str!("../README.md")]
#![no_std]

mod bools;

pub use bools::*;

pub(crate) trait Sealed {}