#reference #rc #identity #hash #hash-key #reference-identity

hash_by_ref

A simple NewType that wraps Rc<T> and allows to use the reference identity/pointer value of Rc<T> as keys in hashmap

1 unstable release

Uses old Rust 2015

0.1.0 Jun 23, 2017

#23 in #hash-key

Download history 312/week @ 2024-11-16 218/week @ 2024-11-23 136/week @ 2024-11-30 217/week @ 2024-12-07 312/week @ 2024-12-14 157/week @ 2024-12-21 125/week @ 2024-12-28 166/week @ 2025-01-04 132/week @ 2025-01-11 419/week @ 2025-01-18 192/week @ 2025-01-25 306/week @ 2025-02-01 309/week @ 2025-02-08 902/week @ 2025-02-15 372/week @ 2025-02-22 260/week @ 2025-03-01

1,889 downloads per month

Custom license

4KB
74 lines

HashByRef

This is a small helper crate to use Rc<T> as hash keys where equality is supposed to be determined by the underlaying reference identity (i.e. by the value of the pointer). It provides a type HashByRef<T> that can be used as key in the hashmap.

Quick Start

hash_by_ref = "0.1.0"
    use std::collections::HashMap;
    use std::rc::Rc;
    use hash_by_ref::HashByRef;

    let r1 = Rc::new(1);
    let r2 = Rc::new(1);
    let r3 = r1.clone();
    let mut h = HashMap::new();
    h.insert(HashByRef::new(r1.clone()),1);
    h.insert(HashByRef::new(r2.clone()),2);
    assert_eq!(h[&HashByRef::new(r1.clone())], 1);
    assert_eq!(h[&HashByRef::new(r2.clone())], 2);
    assert_eq!(h[&HashByRef::new(r3.clone())], 1);

No runtime deps