pub open spec fn strictly_cloned<T: Clone>(a: T, b: T) -> boolExpand description
{ call_ensures(T::clone, (&a,), b) }Predicate indicating b could be the result of calling a.clone()
It is usually recommended to use cloned instead,
which takes the reflexive closure.