Ivan Yakushev

Results 4 issues of Ivan Yakushev

**Backwards behavior** Functions such as `unweave`, `crosswalk`, `crosswalkNull` transform the original collection in a reverse order. Is this the intentional behavior?.. ``` listOf(1, 2, 3).crosswalkNull{ it } // [3, 2,...

Say we have 3 initial collections (after transformations) ``` [16, 17, 18] [3, 4] [5, 6] ``` and then we want to unweave.. but what does it mean? Probably we...

`f` cannot generate `Ior.Right` or `Ior.Both` since it is only passed a leftValue Needs to be ` f: (A, B) -> Ior` https://github.com/arrow-kt/arrow/blob/8c27809a20c7e8433faf0e844c9c38d00aff9a85/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Ior.kt#L428-L436