1mod core; 2pub mod list; 3pub mod tree; 4 5pub use core::{DSError, Result}; 6pub use list::{List, SinglyLinkedList, SortedList};