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
/*
* result.rs
*
* ref-map - Convenience methods for references of Option and Result.
* Copyright (c) 2020-2026 Emmie Maeda
*
* ref-map is available free of charge under the terms of the MIT
* License. You are free to redistribute and/or modify it under those
* terms. It is distributed in the hopes that it will be useful, but
* WITHOUT ANY WARRANTY. See the LICENSE file for more details.
*
*/
/// Adds the `ref_map()` and `ref_map_err()` extension methods onto [`Result`].
///
/// The `ref_map()` method borrows the internal object and passes it
/// to a closure to be mapped in some way. This allows convenient use
/// of `as_*` type methods or calculations which require the borrowed
/// internal value.
///
/// ```
/// # #[derive(Debug, PartialEq, Eq)]
/// # struct Error;
/// use ref_map::*;
///
/// let answer: Result<Vec<i8>, Error> = Ok(vec![4, 7, 9, 5, 6]);
///
/// let filtered = answer.ref_map(|v| &v[3..]);
/// let answer = &[5, 6];
///
/// assert_eq!(filtered, Ok(&answer[..]));
/// ```
///
/// The `ref_map_err()` provides the same, but on the `Err(_)` variant
/// instead of `Ok(_)`.
///
/// ```
/// # use ref_map::*;
///
/// let answer: Result<(), String> = Err("file not found".into());
///
/// let error = answer.ref_map_err(|s| s.as_str());
///
/// assert_eq!(error, Err("file not found"));
/// ```
///
/// See the crate-level documentation for more information.
///
/// [`Result`]: https://doc.rust-lang.org/std/option/enum.Result.html