File tree 3 files changed +15
-8
lines changed
3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 73
73
74
74
breathe_default_project = "stdexec"
75
75
76
- def setup (app ):
77
- app .add_css_file ("params.css" )
76
+ highlight_language = "cpp"
77
+
78
+ # def setup(app):
79
+ # app.add_css_file("params.css")
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ Sender Factories
23
23
24
24
.. doxygenvariable :: stdexec::read_env
25
25
26
+ .. doxygenstruct :: exec::just_from_t
27
+
28
+ .. doxygenvariable :: exec::just_from
29
+
26
30
Sender Adaptors
27
31
---------------
28
32
Original file line number Diff line number Diff line change @@ -167,12 +167,6 @@ namespace exec {
167
167
// !
168
168
// ! @param fn The callable to be invoked when the sender is started.
169
169
// !
170
- // ! @par Example:
171
- // ! @code
172
- // ! // The following sender is equivalent to just(42, 3.14):
173
- // ! auto sndr = exec::just_from([](auto sink) { return sink(42, 3.14); });
174
- // ! @endcode
175
- // !
176
170
// ! @par
177
171
// ! The function passed to `just_from` must return an instance of a specialization of
178
172
// ! `stdexec::completion_signatures<>` that describes the ways the sink function might be
@@ -182,6 +176,13 @@ namespace exec {
182
176
// !
183
177
// ! @par Example:
184
178
// ! @code
179
+ // ! // The following sender is equivalent to just(42, 3.14):
180
+ // ! auto sndr = exec::just_from([](auto sink) { return sink(42, 3.14); });
181
+ // ! @endcode
182
+ // !
183
+ // ! @par Example:
184
+ // ! @code
185
+ // ! // A just_from sender can have multiple completion signatures:
185
186
// ! auto sndr = exec::just_from(
186
187
// ! [](auto sink) {
187
188
// ! if (some-condition) {
You can’t perform that action at this time.
0 commit comments