elvish_core/
lib.rs

1//! Core utilities for `elvish` (used also inside macros)
2
3#![warn(missing_docs)]
4
5pub mod data;
6pub mod solution;
7
8// TODO: This should be an enum whenever enum const generics are possible
9/// Either part 1 (0) or part 2 (1)
10pub type Part = u8;