bct 0.1.0

A simple Binary-Coded Ternary implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod translate;

mod tryte;
pub use tryte::Tryte;

mod word;
pub use word::Word;

#[cfg(test)]
mod tryte_tests;

#[cfg(test)]
mod word_tests;