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
139
//! Lift regular Effects into SinkEffect with no emissions.
use Future;
use PhantomData;
use crateSinkEffect;
use crateEffect;
/// Lifts a regular Effect into a SinkEffect with no emissions.
///
/// This allows regular effects to be composed with SinkEffects
/// in chains and combinations.
///
/// # Example
///
/// ```rust
/// use stillwater::effect::sink::prelude::*;
/// use stillwater::effect::prelude::pure;
///
/// # tokio_test::block_on(async {
/// let regular_effect = pure::<_, String, ()>(42);
/// let sink_effect = into_sink::<_, _, String>(regular_effect);
///
/// let (result, collected) = sink_effect.run_collecting(&()).await;
///
/// assert_eq!(result, Ok(42));
/// assert!(collected.is_empty());
/// # });
/// ```
/// Lift a regular Effect into a SinkEffect with no emissions.
///
/// This is the primary way to integrate existing effects that don't
/// have Sink capabilities into a SinkEffect chain.
///
/// # Type Parameters
///
/// * `E` - The effect type to lift
/// * `Env` - The environment type (inferred)
/// * `T` - The item type (must be specified or inferred from context)
///
/// # Example
///
/// ```rust
/// use stillwater::effect::sink::prelude::*;
/// use stillwater::effect::prelude::pure;
///
/// # tokio_test::block_on(async {
/// // Pure computation lifted into Sink context
/// let effect = into_sink::<_, _, String>(pure::<_, String, ()>(10))
/// .and_then(|n|
/// emit(format!("Got: {}", n))
/// .map(move |_| n * 2)
/// )
/// .tap_emit(|result| format!("Final: {}", result));
///
/// let (result, logs) = effect.run_collecting(&()).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::sink::prelude::*;
/// use stillwater::effect::prelude::asks;
///
/// # #[derive(Clone)]
/// # struct Env { multiplier: i32 }
///
/// # tokio_test::block_on(async {
/// let effect = into_sink::<_, _, String>(asks::<_, String, Env, _>(|env| env.multiplier))
/// .tap_emit(|m| format!("Multiplier: {}", m))
/// .map(|m| m * 10);
///
/// let env = Env { multiplier: 3 };
/// let (result, logs) = effect.run_collecting(&env).await;
/// assert_eq!(result, Ok(30));
/// assert_eq!(logs, vec!["Multiplier: 3".to_string()]);
/// # });
/// ```