pub fn expand_and_collapse_v<F, Seed, Out>( seed: Seed, coalg: impl FnMut(Seed) -> F::Frame<Seed>, alg: impl FnMut(F::Frame<Out>) -> Out, ) -> (Out, Viz)where F: MappableFrame, F::Frame<()>: Display, Seed: Display, Out: Display,