| 191 | // Key for identifying matching half-move pairs. |
| 192 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 193 | struct HalfMoveKey { |
| 194 | pos: MovePosition, |
| 195 | value: Value, |
| 196 | } |
| 197 | |
| 198 | // Custom hasher which hashes a single u64 instead of 2 u32 |
| 199 | impl Hash for HalfMoveKey { |
nothing calls this directly
no outgoing calls
no test coverage detected