You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: stream/stream.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ class Stream():
17
17
.map(lambda w: w.getWeight())
18
18
.sum()
19
19
20
-
A stream pipeline, like the "widgets" example above, can be viewed as a query on the stream source.
20
+
A stream pipeline, like the elements example above, can be viewed as a query on the stream source.
21
21
22
22
A stream should be operated on (invoking an intermediate or terminal stream operation) only once. This rules out, for example, "forked" streams, where the same source feeds two or more pipelines, or multiple traversals of the same stream. A stream implementation may raise Exception if it detects that the stream is being reused.
0 commit comments