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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
//! Lift regular Effects into WriterEffect with empty writes.
use PhantomData;
use crateWriterEffect;
use crateEffect;
use crateMonoid;
/// Lifts a regular Effect into a WriterEffect with empty writes.
///
/// This allows regular effects to be composed with WriterEffects
/// in chains and combinations.
///
/// # Example
///
/// ```rust
/// use stillwater::effect::writer::prelude::*;
/// use stillwater::effect::prelude::*;
///
/// # tokio_test::block_on(async {
/// let regular_effect = pure::<_, String, ()>(42);
/// let writer_effect = into_writer::<_, _, Vec<String>>(regular_effect);
///
/// let (result, logs) = writer_effect
/// .tap_tell(|n| vec![format!("Got: {}", n)])
/// .run_writer(&())
/// .await;
///
/// assert_eq!(result, Ok(42));
/// assert_eq!(logs, vec!["Got: 42".to_string()]);
/// # });
/// ```
/// Lift a regular Effect into a WriterEffect with empty writes.
///
/// This is the primary way to integrate existing effects that don't
/// have Writer capabilities into a WriterEffect chain.
///
/// # Type Parameters
///
/// * `E` - The effect type to lift
/// * `Env` - The environment type (inferred)
/// * `W` - The writes type (must be specified or inferred from context)
///
/// # Example
///
/// ```rust
/// use stillwater::effect::writer::prelude::*;
/// use stillwater::effect::prelude::*;
///
/// # tokio_test::block_on(async {
/// // Pure computation lifted into Writer context
/// let effect = into_writer::<_, _, Vec<String>>(pure::<_, String, ()>(10))
/// .and_then(|n|
/// tell_one(format!("Got: {}", n))
/// .map(move |_| n * 2)
/// )
/// .tap_tell(|result| vec![format!("Final: {}", result)]);
///
/// let (result, logs) = effect.run_writer(&()).await;
/// assert_eq!(result, Ok(20));
/// assert_eq!(logs, vec!["Got: 10".to_string(), "Final: 20".to_string()]);
/// # });
/// ```
///
/// # Integrating with Reader
///
/// ```rust
/// use stillwater::effect::writer::prelude::*;
/// use stillwater::effect::prelude::*;
///
/// # #[derive(Clone)]
/// # struct Env { multiplier: i32 }
///
/// # tokio_test::block_on(async {
/// let effect = into_writer::<_, _, Vec<String>>(asks::<_, String, Env, _>(|env| env.multiplier))
/// .tap_tell(|m| vec![format!("Multiplier: {}", m)])
/// .map(|m| m * 10);
///
/// let env = Env { multiplier: 3 };
/// let (result, logs) = effect.run_writer(&env).await;
/// assert_eq!(result, Ok(30));
/// assert_eq!(logs, vec!["Multiplier: 3".to_string()]);
/// # });
/// ```