(&self, other: &Self)
| 30 | |
| 31 | impl Ord for Cand { |
| 32 | fn cmp(&self, other: &Self) -> std::cmp::Ordering { |
| 33 | self.dist |
| 34 | .partial_cmp(&other.dist) |
| 35 | .unwrap_or(std::cmp::Ordering::Equal) |
| 36 | .then(self.idx.cmp(&other.idx)) |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | impl<C: VectorCodec> HnswCodecIndex<C> { |
no test coverage detected