| 216 | |
| 217 | #[derive(Clone, Copy, Debug, PartialEq, Eq)] |
| 218 | pub enum ExtNode<N: Idx> { |
| 219 | Real(Option<N>), |
| 220 | Fake, |
| 221 | } |
| 222 | |
| 223 | impl<N: Idx> ExtNode<N> { |
| 224 | pub fn is_none(&self) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected