Skip to content

Commit f4dec61

Browse files
authored
Update README.md
1 parent 721c871 commit f4dec61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ A small Java 8+ utilities library ([javadoc](http://google.github.io/mug/apidocs
1919
<details>
2020
<summary>More tools</summary>
2121

22-
- [`BinarySearch`](./mug-guava/src/main/java/com/google/mu/collect/README.md) - solves LeetCode binary search problems
22+
- [`Iteration`](https://github.com/google/mug/wiki/Iteration-Explained) - implement lazy stream with recursive code
23+
- [`BinarySearch`](./mug-guava/src/main/java/com/google/mu/collect/README.md) - solve LeetCode binary search problems
2324
`BinarySearch.inSortedArrayWithTolerance(doubleArray, 0.0001).find(target)`
2425
- [`StructuredConcurrency`](./mug/src/main/java/com/google/mu/util/concurrent/README.md) - simple structured concurrency on virtual threads
2526
`concurrently(() -> fetchArm(), () -> fetchLeg(), (arm, leg) -> makeRobot(arm, leg))`
2627
- [`MoreStreams`](https://google.github.io/mug/apidocs/com/google/mu/util/stream/MoreStreams.html)
2728
`whileNotNull(queue::poll).filter(...).map(...)`
2829
- [`Optionals`](https://google.github.io/mug/apidocs/com/google/mu/util/Optionals.html)
2930
`return optionally(obj.hasFoo(), obj::getFoo);`
30-
- [`Iteration`](https://github.com/google/mug/wiki/Iteration-Explained) - implement lazy stream with recursive code
3131

3232
</details>
3333

0 commit comments

Comments
 (0)