Skip to content

Commit 2c06840

Browse files
committed
Deploying to gh-pages from @ 7ffb5e2 🚀
1 parent d47df30 commit 2c06840

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

chapter_2/chapter_2_1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ <h1 id="creating-inputs"><a class="header" href="#creating-inputs">Creating Inpu
192192
worker.dataflow(|scope| {
193193

194194
let stream1 = input.to_stream(scope);
195-
let stream2 = (0 .. 9).to_stream(scope);
195+
let stream2 = (0 .. 10).to_stream(scope);
196196

197197
});
198198

chapter_2/chapter_2_2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ <h1 id="observing-outputs"><a class="header" href="#observing-outputs">Observing
183183
fn main() {
184184
timely::execute_from_args(std::env::args(), |worker| {
185185
worker.dataflow::&lt;(),_,_&gt;(|scope| {
186-
(0 .. 9)
186+
(0 .. 10)
187187
.to_stream(scope)
188188
.inspect(|x| println!("hello: {}", x));
189189
});

chapter_2/chapter_2_3.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ <h2 id="mapping"><a class="header" href="#mapping">Mapping</a></h2>
186186
fn main() {
187187
timely::execute_from_args(std::env::args(), |worker| {
188188
worker.dataflow::&lt;(),_,_&gt;(|scope| {
189-
(0 .. 9)
189+
(0 .. 10)
190190
.to_stream(scope)
191191
.map(|x| x + 1)
192192
.inspect(|x| println!("hello: {}", x));
@@ -201,7 +201,7 @@ <h2 id="mapping"><a class="header" href="#mapping">Mapping</a></h2>
201201
fn main() {
202202
timely::execute_from_args(std::env::args(), |worker| {
203203
worker.dataflow::&lt;(),_,_&gt;(|scope| {
204-
(0 .. 9)
204+
(0 .. 10)
205205
.to_stream(scope)
206206
.map(|x| x.to_string())
207207
.map(|mut x| { x.truncate(5); x } )
@@ -219,7 +219,7 @@ <h3 id="map-variants"><a class="header" href="#map-variants">Map variants</a></h
219219
fn main() {
220220
timely::execute_from_args(std::env::args(), |worker| {
221221
worker.dataflow::&lt;(),_,_&gt;(|scope| {
222-
(0 .. 9)
222+
(0 .. 10)
223223
.to_stream(scope)
224224
.map(|x| x.to_string())
225225
.map_in_place(|x| x.truncate(5))
@@ -235,7 +235,7 @@ <h3 id="map-variants"><a class="header" href="#map-variants">Map variants</a></h
235235
fn main() {
236236
timely::execute_from_args(std::env::args(), |worker| {
237237
worker.dataflow::&lt;(),_,_&gt;(|scope| {
238-
(0 .. 9)
238+
(0 .. 10)
239239
.to_stream(scope)
240240
.flat_map(|x| 0 .. x)
241241
.inspect(|x| println!("hello: {}", x));
@@ -251,7 +251,7 @@ <h2 id="filtering"><a class="header" href="#filtering">Filtering</a></h2>
251251
fn main() {
252252
timely::execute_from_args(std::env::args(), |worker| {
253253
worker.dataflow::&lt;(),_,_&gt;(|scope| {
254-
(0 .. 9)
254+
(0 .. 10)
255255
.to_stream(scope)
256256
.filter(|x| *x % 2 == 0)
257257
.inspect(|x| println!("hello: {}", x));

print.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ <h2 id="responding-to-progress-information"><a class="header" href="#responding-
614614
worker.dataflow(|scope| {
615615

616616
let stream1 = input.to_stream(scope);
617-
let stream2 = (0 .. 9).to_stream(scope);
617+
let stream2 = (0 .. 10).to_stream(scope);
618618

619619
});
620620

@@ -633,7 +633,7 @@ <h2 id="other-sources"><a class="header" href="#other-sources">Other sources</a>
633633
fn main() {
634634
timely::execute_from_args(std::env::args(), |worker| {
635635
worker.dataflow::&lt;(),_,_&gt;(|scope| {
636-
(0 .. 9)
636+
(0 .. 10)
637637
.to_stream(scope)
638638
.inspect(|x| println!("hello: {}", x));
639639
});
@@ -687,7 +687,7 @@ <h2 id="mapping"><a class="header" href="#mapping">Mapping</a></h2>
687687
fn main() {
688688
timely::execute_from_args(std::env::args(), |worker| {
689689
worker.dataflow::&lt;(),_,_&gt;(|scope| {
690-
(0 .. 9)
690+
(0 .. 10)
691691
.to_stream(scope)
692692
.map(|x| x + 1)
693693
.inspect(|x| println!("hello: {}", x));
@@ -702,7 +702,7 @@ <h2 id="mapping"><a class="header" href="#mapping">Mapping</a></h2>
702702
fn main() {
703703
timely::execute_from_args(std::env::args(), |worker| {
704704
worker.dataflow::&lt;(),_,_&gt;(|scope| {
705-
(0 .. 9)
705+
(0 .. 10)
706706
.to_stream(scope)
707707
.map(|x| x.to_string())
708708
.map(|mut x| { x.truncate(5); x } )
@@ -720,7 +720,7 @@ <h3 id="map-variants"><a class="header" href="#map-variants">Map variants</a></h
720720
fn main() {
721721
timely::execute_from_args(std::env::args(), |worker| {
722722
worker.dataflow::&lt;(),_,_&gt;(|scope| {
723-
(0 .. 9)
723+
(0 .. 10)
724724
.to_stream(scope)
725725
.map(|x| x.to_string())
726726
.map_in_place(|x| x.truncate(5))
@@ -736,7 +736,7 @@ <h3 id="map-variants"><a class="header" href="#map-variants">Map variants</a></h
736736
fn main() {
737737
timely::execute_from_args(std::env::args(), |worker| {
738738
worker.dataflow::&lt;(),_,_&gt;(|scope| {
739-
(0 .. 9)
739+
(0 .. 10)
740740
.to_stream(scope)
741741
.flat_map(|x| 0 .. x)
742742
.inspect(|x| println!("hello: {}", x));
@@ -752,7 +752,7 @@ <h2 id="filtering"><a class="header" href="#filtering">Filtering</a></h2>
752752
fn main() {
753753
timely::execute_from_args(std::env::args(), |worker| {
754754
worker.dataflow::&lt;(),_,_&gt;(|scope| {
755-
(0 .. 9)
755+
(0 .. 10)
756756
.to_stream(scope)
757757
.filter(|x| *x % 2 == 0)
758758
.inspect(|x| println!("hello: {}", x));

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

searchindex.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)