diff --git a/crates/types/src/compound/peano.rs b/crates/types/src/compound/peano.rs index 83a199e..d3825e4 100644 --- a/crates/types/src/compound/peano.rs +++ b/crates/types/src/compound/peano.rs @@ -2,14 +2,20 @@ pub struct PNext
(P);
pub struct P0;
pub type P1 = PNext {}
+impl Peano for P0 {
+ type Next = P1;
+}
+impl {
+ type Next = PNext {
type Prev = P;
}