1
2
3
4
/// Replaces a variable by another that is calculated by the `predicate`.
pub fn replace_by<T, P: FnOnce() -> T>(dest: &mut T, predicate: P) -> T {
    std::mem::replace(dest, predicate())
}