rust_ds/linked_lists/node/
mod.rs

1mod extended;
2mod singly;
3
4pub(crate) use extended::ExtNode;
5pub(crate) use singly::SNode;