pub fn arb_assoc_map<K: Debug, V: Debug>(
arb_k: impl Strategy<Value = K>,
arb_v: impl Strategy<Value = V>,
) -> impl Strategy<Value = AssocMap<K, V>>
Expand description
Strategy to generate an AssocMap, given the strategies to generate keys and values