use enve::core::SepVec; type PlusVec = SepVec; type MulVec = SepVec; fn main() -> Result<(), enve::Error> { let res: f32 = enve::get::>>("E")? .iter() .map(|m| m.iter().product::()) .sum(); println!("result: {}", res); Ok(()) }