()
| 232 | univ::put_univ(&Univ::max(Univ::zero(), Univ::var(1)), &mut buf); |
| 233 | assert_eq!( |
| 234 | buf, |
| 235 | vec![0x40, 0x00, 0xC1], |
| 236 | "Univ::Max(Zero, Var(1)) should be [0x40, 0x00, 0xC1]" |
| 237 | ); |
| 238 | } |
| 239 | |
| 240 | // ========================================================================= |
| 241 | // Expression examples (docs section "Expression Examples") |
| 242 | // ========================================================================= |
nothing calls this directly
no test coverage detected