|
|
|
|
|
by azth
1689 days ago
|
|
I find Java's features to be very well balanced, and only make it into the language after they've been vetted and tested in the wild by other languages. e.g. see their take on concurrency by means of project Loom. No need for async/await and providing separate APIs for sync vs async operations. It has records and sealed types and pattern matching, and is getting destructuring soon. |
|
I don’t think I can build an Async<Either<E, T>> expression with Loom, for example.