Content-addressed key for cache lookups. Returns the blake3 hash by value — `Addr` is `Copy`, so this is a 32-byte memcpy.
(&self)
| 141 | /// canonical value" — strictly, structural equality. |
| 142 | pub fn hash_key(&self) -> Addr { |
| 143 | *self.addr() |
| 144 | } |
| 145 | |
| 146 | pub fn ptr_eq(&self, other: &KExpr<M>) -> bool { |
| 147 | Arc::ptr_eq(&self.0, &other.0) |
| 148 | } |
no test coverage detected