| 41 | /// evaluation similar methods on [`Option`] provide. |
| 42 | #[derive(Clone, Copy, Debug)] |
| 43 | pub struct CtOption<T> { |
| 44 | value: T, |
| 45 | is_some: Choice, |
| 46 | } |
| 47 | |
| 48 | impl<T> CtOption<T> { |
| 49 | /// Construct a new [`CtOption`], with a [`Choice`] parameter `is_some` as a stand-in for |
nothing calls this directly
no outgoing calls
no test coverage detected