1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//! The standard library named [`bool::then_some`] and [`bool::then`] strangely.
//! It should have been `then` and `then_with`. I find it annoying that
//! `expr.then(|| value)` is shorter to type that the more "idiomatic"
//! `expr.then_some(value)`
//!
//! This crate provides these functions under the following names
//! [`.some`][Some::some] and [`.some_with`][Some::some_with].
//!
//! # Getting started
//!
//! First, add the crate to your Cargo manifest.
//!
//! ```sh
//! cargo add then
//! ```
//!
//! Now bring the trait into scope.
//!
//! ```
//! use then::Some;
//! ```
//!
//! The `.some` and `.some_with` methods are now available on [`bool`].
//!
//! ```
//! # use then::Some;
//! assert_eq!(false.some(0), None);
//! assert_eq!(true.some_with(Default::default), Some(0));
//! ```
/// Provides the [`some`][Some::some] and [`some_with`][Some::some_with] methods
/// on [`bool`].