()
| 762 | |
| 763 | #[test] |
| 764 | fn and() { |
| 765 | assert!(SOME.and(NONE).is_none().to_bool()); |
| 766 | assert_eq!(SOME.and(OTHER).unwrap(), OTHER.unwrap()); |
| 767 | } |
| 768 | |
| 769 | #[test] |
| 770 | fn and_then() { |
nothing calls this directly
no outgoing calls
no test coverage detected