(&self, other: &CtOption<T>)
| 577 | impl<T: CtEq> CtEq for CtOption<T> { |
| 578 | #[inline] |
| 579 | fn ct_eq(&self, other: &CtOption<T>) -> Choice { |
| 580 | (self.is_some & other.is_some & self.value.ct_eq(&other.value)) |
| 581 | | (self.is_none() & other.is_none()) |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | impl<T: CtEq> CtEqSlice for CtOption<T> {} |