kotlin-result v1.1.9 Release Notes
Release Date: 2020-08-29 // about 3 years ago-
- ๐ Coroutine
binding
support moved tokotlin-result-coroutines
module (b16fb55) by @Munzey - โ Add Scala's
merge
(09d341a)- Calling
.merge()
on aResult<List<Int>, Set<Int>>
will return aCollection<Int>
(their most common supertype).
- Calling
- โ Remove deprecation of eager-evaluating functions (a76768f)
- Rust includes these eager evaluating variants with a simple warning in their comments with regards to using the lazy variants for heavy lifting.
- โก๏ธ Update Gradle to 6.6.1 (30d2778)
- โก๏ธ Update Kotlin to 1.4.0 (a662ebc)
- ๐ Use Kotlin 1.4's Explicit API mode (a9a0c38) by @Munzey
- ๐ Coroutine