netlist 0.1.15

generic netlist data structure for VLSI design
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(dead_code)]

use std::result::Result;
mod error;
pub mod model;
mod ops;
mod parser;
mod saver;

pub use error::NetListError;
pub use model::{BlockIndex, NetIndex, NetList, PinDirection};

pub(crate) type NResult<T> = Result<T, NetListError>;