arrow icon indicating copy to clipboard operation
arrow copied to clipboard

Λrrow - Functional companion to Kotlin's Standard Library

Results 170 arrow issues
Sort by recently updated
recently updated
newest added

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/arrow-kt/arrow). ## Open The following updates have all...

This PR cleans up old code in `Resource`, and fully utilises the `Dsl` implementation as the underlying impl for `Resource`. Eliminating the need for the other ADT cases, simplifying the...

2.0.0

Hi. Something wrong happened to the docs. They were beautiful in 1.0.1: https://github.com/arrow-kt/arrow/blob/1.0.1/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Validated.kt And they are missing in 1.1.2: https://github.com/arrow-kt/arrow/blob/1.1.2/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Validated.kt That makes using it a bit harder...

- Removed `Validated` From the project - Had several knit reports (want to discuss and fix)

2.0.0

Fixes #2743 * Changes internal usage of `Double` to `Duration`. * No changes made to public factory methods (`CircuitBreaker::of`). Questionable to accept a `Duration`, convert it to `Double` and then...

enhancement
arrow-fx

This proposal flattens `Effect` into a `typealias`, and renames `EffectScope` to `Shift`. It replaces the existing error handlers with `catch`, and due to the flattening of `Effect` the existing `catch`...

2.0.0

What version are you currently using? Arrow Core 1.0.1 What would you like to see? It looks like when the new git repository was made. partials.kt's invoke function was not...

https://arrow-kt.io/docs/effects/io/ Not sure that ergonomics section has been written correctly, but since IO monad is Semigroup it should be possible to write something like that: ``` val number = IO.just(1)...

This is a PR to track breaking changes to be included in Arrow 2.0. ## Proposing new changes If you would like to propose a feature or change for inclusion...

2.0.0

- [ ] Remove Validated - [ ] Remove `traverse` - [ ] Replace `zip` from `Either` to https://github.com/nomisRev/kotlin-gists/blob/d5943ef9dd09f765d32506508c481d3b80ac447d/src/main/kotlin/arrow2/Either.kt#L285 - [ ] Add `mapAccumulating` for `Either` https://github.com/nomisRev/kotlin-gists/blob/d5943ef9dd09f765d32506508c481d3b80ac447d/src/main/kotlin/arrow2/Either.kt#L120