4 个版本
使用旧 Rust 2015
0.1.3 | 2017年10月19日 |
---|---|
0.1.2 | 2017年10月19日 |
0.1.1 | 2017年10月19日 |
0.1.0 | 2017年10月19日 |
#27 in #false
3KB
trit
Rust的三进制crate
lib.rs
:
trit crate
提供三进制类型的crate
用法
// Creates a type that is both true and false
let both = Trit::Both;
// both.is_true() == true
// both.is_false() == true
// both.only_true() == false
// both.only_false() == false