Skip to content

Commit f00a74a

Browse files
committed
Merge branch 'master' of github.com:google/mug
2 parents 766fe3f + c91e837 commit f00a74a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/badges/mug-summary.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"branches": 95.14018691588785, "coverage": 95.9350811485643}
1+
{"branches": 95.14018691588785, "coverage": 95.9900124843945}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ A small Java 8+ string processing and streams library ([javadoc](http://google.g
2121

2222
- [`DateTimeFormats`](./mug/src/main/java/com/google/mu/time/README.md) – parse datetimes by example
2323
`DateTimeFormatter format = formatOf("2024-03-14 10:00:00.123 America/New_York")`
24-
- [`Iteration`](https://github.com/google/mug/wiki/Iteration-Explained) - implement lazy stream with recursive code
25-
- [`BinarySearch`](./mug-guava/src/main/java/com/google/mu/collect/README.md) - solve LeetCode binary search problems
24+
- [`Iteration`](./mug/wiki/Iteration-Explained) - implement lazy stream with recursive code
25+
- [`BinarySearch`](./mug-guava/src/main/java/com/google/guava/labs/collect/README.md) - solve LeetCode binary search problems
2626
`BinarySearch.inSortedArrayWithTolerance(doubleArray, 0.0001).find(target)`
2727
- [`StructuredConcurrency`](./mug/src/main/java/com/google/mu/util/concurrent/README.md) - simple structured concurrency on virtual threads
2828
`concurrently(() -> fetchArm(), () -> fetchLeg(), (arm, leg) -> makeRobot(arm, leg))`
29-
- [`MoreStreams`](https://google.github.io/mug/apidocs/com/google/mu/util/stream/MoreStreams.html)
29+
- [`MoreStreams`](./mug/apidocs/com/google/mu/util/stream/MoreStreams.html)
3030
`whileNotNull(queue::poll).filter(...).map(...)`
31-
- [`Optionals`](https://google.github.io/mug/apidocs/com/google/mu/util/Optionals.html)
31+
- [`Optionals`](./mug/apidocs/com/google/mu/util/Optionals.html)
3232
`return optionally(obj.hasFoo(), obj::getFoo);`
3333

3434
</details>

0 commit comments

Comments
 (0)