]> git.proxmox.com Git - rustc.git/blame - library/core/src/bool.rs
New upstream version 1.50.0+dfsg1
[rustc.git] / library / core / src / bool.rs
CommitLineData
e1599b0c
XL
1//! impl bool {}
2
e1599b0c
XL
3#[lang = "bool"]
4impl bool {
5 /// Returns `Some(t)` if the `bool` is `true`, or `None` otherwise.
6 ///
7 /// # Examples
8 ///
9 /// ```
10 /// #![feature(bool_to_option)]
11 ///
60c5eb7d
XL
12 /// assert_eq!(false.then_some(0), None);
13 /// assert_eq!(true.then_some(0), Some(0));
e1599b0c
XL
14 /// ```
15 #[unstable(feature = "bool_to_option", issue = "64260")]
16 #[inline]
60c5eb7d
XL
17 pub fn then_some<T>(self, t: T) -> Option<T> {
18 if self { Some(t) } else { None }
e1599b0c
XL
19 }
20
21 /// Returns `Some(f())` if the `bool` is `true`, or `None` otherwise.
22 ///
23 /// # Examples
24 ///
25 /// ```
60c5eb7d
XL
26 /// assert_eq!(false.then(|| 0), None);
27 /// assert_eq!(true.then(|| 0), Some(0));
e1599b0c 28 /// ```
fc512014 29 #[stable(feature = "lazy_bool_to_option", since = "1.50.0")]
e1599b0c 30 #[inline]
60c5eb7d
XL
31 pub fn then<T, F: FnOnce() -> T>(self, f: F) -> Option<T> {
32 if self { Some(f()) } else { None }
e1599b0c
XL
33 }
34}