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
use crate::;
/// Provides a convenient interface for applying a transformation function over a target value within a source.
///
/// This trait is automatically implemented for any optic that implements
/// [`HasGetter`] and [`HasSetter`].
///
/// # Example
///
/// ```rust
/// use optics::{Lens, HasOver, mapped_prism, mapped_lens};
///
/// struct Point {
/// x: u32,
/// y: u32,
/// }
///
/// let x_lens = mapped_lens(
/// |p: &Point| p.x,
/// |p: &mut Point, x| { p.x = x },
/// );
///
/// let mut point = Point { x: 10, y: 20 };
/// x_lens.over(&mut point, |x| x + 5);
/// assert_eq!(point.x, 15);
/// ```
///
/// # See also:
///
/// [`HasGetter`]: crate::HasGetter
/// [`GetterError`]: crate::HasGetter::GetterError
/// [`Infallible`]: std::convert::Infallible
/// [`HasSetter`]: crate::HasSetter