use ;
use Strategy;
// pub fn terminated(
// strat: impl Strategy<Value = impl core::fmt::Display>,
// term: impl Strategy<Value = impl core::fmt::Display>,
// ) -> impl Strategy<Value = String> {
// let strat = (strat, term);
// Strategy::prop_map(strat, move |(s, t)| {
// let res = format!("{s}{t}");
// res
// })
// }