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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -955,7 +955,7 @@ for (var credit : credits) {
955
955
`ElementAdapter` also supports `put()` and `remove()` for modifying an element's contents.
956
956
957
957
## Pipe
958
-
The `Pipe` class provides a vehicle by which a producer thread can submit a sequence of elements for retrieval by a consumer thread. It implements the `Iterable` interface and returns values as they become available, blocking if necessary.
958
+
The `Pipe` class provides a vehicle by which a producer thread can submit a sequence of values for retrieval by a consumer thread. It implements the `Iterable` interface and returns elements as they become available, blocking if necessary.
959
959
960
960
For example, the following code executes a SQL query that retrieves all rows from an `employees` table:
961
961
@@ -1134,7 +1134,7 @@ var number = cast("abc", Double.class); // null
1134
1134
```
1135
1135
1136
1136
## Iterables
1137
-
The `Iterables` classcontains methods for working with iterable types:
1137
+
The `Iterables` classcontains methods for processing a sequence of values:
0 commit comments