@@ -5,25 +5,17 @@ A small Java 8+ utilities library ([javadoc](http://google.github.io/mug/apidocs
55
66## Highlights
77
8- - ✅ ` BiStream ` – streams ` Map ` and pair-wise collections
8+ - ✅ [ ` BiStream ` ] ( ./mug/src/main/java/com/google/mu/util/stream/README.md ) – streams ` Map ` and pair-wise collections
99 → ` BiStream.map(map).filterKeys(...).mapValues(...).toMap() `
10- - ✅ ` Substring ` – composable substring extraction
10+ - ✅ [ ` Substring ` ] ( https://github.com/google/mug/wiki/Substring-Explained ) – composable substring extraction
1111 → ` Substring.between("(", ")").from("call(foo)") → "foo" `
12- - ✅ ` StringFormat ` – compile-time-safe bidirectional formatting
12+ - ✅ [ ` StringFormat ` ] ( https://github.com/google/mug/wiki/StringFormat-Explained ) – compile-time-safe bidirectional formatting
1313 → ` new StringFormat("/home/{user}/{year}-{month}-{day}").parse(filePath, (user, year, month, day) -> ...) `
14- - ✅ ` SafeSql ` – SQL string interpolation with injection protection
14+ - ✅ [ ` SafeSql ` ] ( ./mug-guava/src/main/java/com/google/mu/safesql/README.md ) – SQL string interpolation with injection protection
1515 → ` SafeSql.of("select id, ``{col}`` from Users where id = {id}", col, id) ` (injection impossible!)
16- - ✅ ` DateTimeFormats ` – parse datetimes by example
16+ - ✅ [ ` DateTimeFormats ` ] ( ./mug/src/main/java/com/google/mu/time/README.md ) – parse datetimes by example
1717 → ` DateTimeFormatter format = formatOf("2024-03-14 10:00:00.123 America/New_York") `
1818
19- ## Docs
20-
21- - 📄 [ ` BiStream ` ] ( ./mug/src/main/java/com/google/mu/util/stream/README.md )
22- - 📄 [ ` Substring ` ] ( https://github.com/google/mug/wiki/Substring-Explained )
23- - 📄 [ ` StringFormat ` ] ( https://github.com/google/mug/wiki/StringFormat-Explained )
24- - 📄 [ ` SafeSql ` ] ( ./mug-guava/src/main/java/com/google/mu/safesql/README.md )
25- - 📄 [ ` DateTimeFormats ` ] ( ./mug/src/main/java/com/google/mu/time/README.md )
26-
2719<details >
2820<summary >More tools</summary >
2921
0 commit comments