1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! # Examples of decision tables defined as Unicode text
//!
//! File naming convention for horizontal decision tables (rules as rows):
//!
//! ```text
//! ┌────────────── table orientation: h - horizontal (rules as rows)
//! │ ┌──────────── information item name: 0 - absent, 1 - present
//! │ │┌─────────── output label: 0 - absent, 1 - present
//! │ ││┌────────── allowed values: 0 - absent, 1 - present
//! │ │││┌───────── number of input clauses: 0, 1, 2...
//! │ ││││┌──────── number of output clauses: 1, 2, 3...
//! │ │││││┌─────── number of annotation clauses: 0, 1, 2...  
//! H_000010
//! ```

mod crosstab;
mod horizontal;
mod vertical;

pub use crosstab::*;
pub use horizontal::*;
pub use vertical::*;