Constructs the successor of universe level `x`.
(x: Level)
| 317 | } |
| 318 | |
| 319 | /// Returns the precomputed Blake3 hash of this level. |
| 320 | pub fn get_hash(&self) -> &Hash { |
| 321 | match &*self.0 { |
| 322 | LevelData::Zero(h) |
| 323 | | LevelData::Succ(_, h) |
| 324 | | LevelData::Max(.., h) |
| 325 | | LevelData::Imax(.., h) |
| 326 | | LevelData::Param(_, h) |
| 327 | | LevelData::Mvar(_, h) => h, |