(&self, dense_id: u32)
| 232 | // ── Raw u32 API (in-partition algorithm use — no tag validation) ── |
| 233 | |
| 234 | pub fn node_name_raw(&self, dense_id: u32) -> &str { |
| 235 | &self.id_to_node[dense_id as usize] |
| 236 | } |
| 237 | |
| 238 | pub fn node_id_raw(&self, name: &str) -> Option<u32> { |
| 239 | self.node_to_id.get(name).copied() |
no outgoing calls
no test coverage detected