]>
Commit | Line | Data |
---|---|---|
1a4d82fc JJ |
1 | // Copyright 2014 The Rust Project Developers. See the COPYRIGHT |
2 | // file at the top-level directory of this distribution and at | |
3 | // http://rust-lang.org/COPYRIGHT. | |
4 | // | |
5 | // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | |
6 | // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | |
7 | // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | |
8 | // option. This file may not be copied, modified, or distributed | |
9 | // except according to those terms. | |
10 | ||
7453a54e SL |
11 | use core::nonzero::NonZero; |
12 | use std::u32; | |
1a4d82fc | 13 | |
7453a54e SL |
14 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] |
15 | pub struct NodeIndex { | |
54a0048b | 16 | index: NonZero<u32>, |
1a4d82fc JJ |
17 | } |
18 | ||
7453a54e SL |
19 | impl NodeIndex { |
20 | pub fn new(value: usize) -> NodeIndex { | |
21 | assert!(value < (u32::MAX as usize)); | |
54a0048b | 22 | unsafe { NodeIndex { index: NonZero::new((value as u32) + 1) } } |
1a4d82fc JJ |
23 | } |
24 | ||
7453a54e SL |
25 | pub fn get(self) -> usize { |
26 | (*self.index - 1) as usize | |
1a4d82fc JJ |
27 | } |
28 | } |