leave a TODO: enumerated: make use of List abstractions

This commit is contained in:
2022-08-23 23:51:03 -07:00
parent ab6496d5f6
commit cdb0c3eaaa

View File

@@ -1,6 +1,8 @@
use crate::compound::peano::{P0, Peano, PNext}; use crate::compound::peano::{P0, Peano, PNext};
use crate::compound::list::{self, Indexable, IntoList, List}; use crate::compound::list::{self, Indexable, IntoList, List};
// TODO: we can probably simplify a lot of this by using the newer List traits
#[cfg(feature = "serde")] #[cfg(feature = "serde")]
use serde::{Serialize, Deserialize}; use serde::{Serialize, Deserialize};