2021-04-20 04:09:12 +02:00
|
|
|
#![feature(trait_alias)]
|
|
|
|
|
|
|
|
pub mod core;
|
2021-04-29 01:32:59 +02:00
|
|
|
pub mod projection;
|
|
|
|
|
|
|
|
pub mod singleton;
|
2021-04-20 04:09:12 +02:00
|
|
|
pub mod index;
|
|
|
|
pub mod grid;
|
|
|
|
pub mod sequence;
|
2021-06-16 01:56:09 +02:00
|
|
|
pub mod vec;
|
2021-04-20 04:09:12 +02:00
|
|
|
pub mod terminal;
|
2021-04-29 01:32:59 +02:00
|
|
|
pub mod integer;
|
2021-08-11 17:49:58 +02:00
|
|
|
pub mod list;
|
2021-04-29 01:32:59 +02:00
|
|
|
|
2021-08-15 04:27:09 +02:00
|
|
|
pub mod tree_nav;
|
|
|
|
|
2021-04-20 04:09:12 +02:00
|
|
|
pub mod string_editor;
|
|
|
|
pub mod leveled_term_view;
|
|
|
|
|
2021-04-30 03:49:53 +02:00
|
|
|
pub mod bimap;
|
|
|
|
|
2021-04-19 05:01:09 +02:00
|
|
|
pub fn magic_header() {
|
|
|
|
eprintln!("<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>");
|
|
|
|
}
|
|
|
|
|