c3-linearization 0.1.0

C3 linearization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod algorithm;
mod errors;

pub use algorithm::merge;
pub use errors::{Error, Result};

pub struct C3 {
    reverse: bool,
    python: bool,
}

impl Default for C3 {
    fn default() -> Self {
        Self { reverse: false, python: false }
    }
}