(value: T)
| 58 | #[inline] |
| 59 | #[must_use] |
| 60 | pub const fn some(value: T) -> CtOption<T> { |
| 61 | Self::new(value, Choice::TRUE) |
| 62 | } |
| 63 | |
| 64 | /// Construct a new [`CtOption`] with the [`Default`] value, and where `self.is_some()` is |
| 65 | /// [`Choice::FALSE`]. |
nothing calls this directly
no outgoing calls
no test coverage detected