()
| 823 | |
| 824 | #[test] |
| 825 | fn map() { |
| 826 | assert!(NONE.map(|value| value + 1).ct_eq(&NONE).to_bool()); |
| 827 | assert!(SOME.map(|value| value + 1).ct_eq(&OTHER).to_bool()); |
| 828 | } |
| 829 | |
| 830 | #[test] |
| 831 | fn map_or() { |
nothing calls this directly
no outgoing calls
no test coverage detected