@@ -8,6 +8,8 @@ Generally these types are used to return one of two values, such as success or f
88All types are sealed (Sum types), and can be used in ` switch ` expressions and with
99pattern matching.
1010
11+ ` dichotomy ` is svelte, at about ~ 48 KB.
12+
1113### ` Either ` :
1214A general immutable type that can only be * either* one of two types.
1315The types are called ` Left<L> ` and ` Right<R> ` . By convention, the Left type
@@ -75,6 +77,11 @@ statements and with pattern matching.
7577
7678## Updates
7779
80+ Note that that future versions will target JDK 24, because of JEP-485 (Stream Gatherers) finalization.
81+ An experimental ` ResultStream<V,E> ` which can directly operate on ` Results ` will be the new feature.
82+
83+ Of course, any feature requests or improvements are always welcome.
84+
7885### Release 1.1 (May 2025)
7986Target remains JDK 21.
8087
@@ -121,7 +128,7 @@ or [download](https://github.com/xyzsd/dichotomy/releases/tag/1.0) from GitHub.
121128
122129License
123130-------
124- Copyright 2022-2024 , xyzsd
131+ Copyright 2022-2025 , xyzsd
125132
126133Many thanks to [ @fdelsert ] ( https://github.com/fdelsert ) for
127134suggestions and improvements leading to the 1.0 release.
@@ -136,6 +143,6 @@ Licensed under either of:
136143at your option.
137144
138145
139- [ doc_online ] : https://javadoc.io/doc/net.xyzsd/dichotomy/1.0 /index.html
140- [ doc_download ] : https://github.com/xyzsd/dichotomy/releases/download/1.0 /dichotomy-1.0 -javadoc.jar
146+ [ doc_online ] : https://javadoc.io/doc/net.xyzsd/dichotomy/1.1 /index.html
147+ [ doc_download ] : https://github.com/xyzsd/dichotomy/releases/download/1.1 /dichotomy-javadoc-1.1 -javadoc.jar
141148
0 commit comments