Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inline NonEmpty maps #3120

Merged
merged 2 commits into from
Aug 30, 2023
Merged

Inline NonEmpty maps #3120

merged 2 commits into from
Aug 30, 2023

Conversation

serras
Copy link
Member

@serras serras commented Aug 29, 2023

Fixes #3116

This overrides map and mapIndexed with inline definitions, so they can be used in combination with suspend computations. Unfortunately this cannot be provided in general within NonEmptyCollection, because inline members are not allowed in interfaces.

@serras serras requested review from franciscodr, nomisRev and a team August 29, 2023 09:40
@serras serras self-assigned this Aug 29, 2023
@github-actions
Copy link
Contributor

github-actions bot commented Aug 29, 2023

@nomisRev
Copy link
Member

Do we need to do the same for flatMap and distinctBy?

@nomisRev
Copy link
Member

  1. We would break source compatibility, since now users would need to import map explicitly.

As you mentioned in the ticket, this was probably the best solution in hindsight :/

@serras
Copy link
Member Author

serras commented Aug 29, 2023

Do we need to do the same for flatMap and distinctBy?

There you are

@@ -183,9 +183,18 @@ public class NonEmptyList<out A>(
public override inline fun <B> map(transform: (A) -> B): NonEmptyList<B> =
NonEmptyList(transform(head), tail.map(transform))

override fun <B> flatMap(transform: (A) -> NonEmptyCollection<B>): NonEmptyList<B> =
@Suppress("OVERRIDE_BY_INLINE")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are these suppressions safe to ignore?

Copy link
Member

@raulraja raulraja left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks @serras !

Copy link
Member

@nomisRev nomisRev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @serras!

@nomisRev nomisRev merged commit a7dc178 into main Aug 30, 2023
11 checks passed
@nomisRev nomisRev deleted the as-inline-nonempty-map branch August 30, 2023 11:50
renovate bot referenced this pull request in sindrenm/android-project-template Sep 7, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[io.arrow-kt:arrow-optics-ksp-plugin](https://github.com/arrow-kt/arrow)
| `1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-optics](https://github.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-core](https://github.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-core/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-core/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-core/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-core/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>arrow-kt/arrow (io.arrow-kt:arrow-optics-ksp-plugin)</summary>

### [`v1.2.1`](https://github.com/arrow-kt/arrow/releases/tag/1.2.1)

[Compare
Source](https://github.com/arrow-kt/arrow/compare/1.2.0...1.2.1)

#### What's Changed

- Fix Option.tap deprecation message. by
[@&#8203;wolpl](https://github.com/wolpl) in
[https://github.com/arrow-kt/arrow/pull/3096](https://github.com/arrow-kt/arrow/pull/3096)
- Fix problem with optics and <\*> generics by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3097](https://github.com/arrow-kt/arrow/pull/3097)
- Backport fix for K2 by [@&#8203;serras](https://github.com/serras)
in
[https://github.com/arrow-kt/arrow/pull/3098](https://github.com/arrow-kt/arrow/pull/3098)
- ignoreErrors for Raise by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3100](https://github.com/arrow-kt/arrow/pull/3100)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3085](https://github.com/arrow-kt/arrow/pull/3085)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3101](https://github.com/arrow-kt/arrow/pull/3101)
- Update all dependencies to v0.12.0-rc.5 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3102](https://github.com/arrow-kt/arrow/pull/3102)
- Update all dependencies to v1.9.0-1.0.12 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3103](https://github.com/arrow-kt/arrow/pull/3103)
- Update all dependencies to v5.10.0 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3104](https://github.com/arrow-kt/arrow/pull/3104)
- Remove references to shift in Either.kt by
[@&#8203;nomisRev](https://github.com/nomisRev) in
[https://github.com/arrow-kt/arrow/pull/3105](https://github.com/arrow-kt/arrow/pull/3105)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3106](https://github.com/arrow-kt/arrow/pull/3106)
- Update dependency org.jetbrains.kotlinx.kover to v0.7.3 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3107](https://github.com/arrow-kt/arrow/pull/3107)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3112](https://github.com/arrow-kt/arrow/pull/3112)
- `parMapNotNull` by [@&#8203;raulraja](https://github.com/raulraja)
in
[https://github.com/arrow-kt/arrow/pull/3110](https://github.com/arrow-kt/arrow/pull/3110)
- `parMapNotNullUnordered` for `Flow` by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3111](https://github.com/arrow-kt/arrow/pull/3111)
- Enable experimental K2 by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3087](https://github.com/arrow-kt/arrow/pull/3087)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3118](https://github.com/arrow-kt/arrow/pull/3118)
- Update dependency com.diffplug.spotless to v6.21.0 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3119](https://github.com/arrow-kt/arrow/pull/3119)
- Inline `NonEmpty` maps by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3120](https://github.com/arrow-kt/arrow/pull/3120)
- Remove enableCompatibilityMetadataVariant by
[@&#8203;nomisRev](https://github.com/nomisRev) in
[https://github.com/arrow-kt/arrow/pull/3124](https://github.com/arrow-kt/arrow/pull/3124)
- Update actions/checkout action to v4 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3125](https://github.com/arrow-kt/arrow/pull/3125)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3121](https://github.com/arrow-kt/arrow/pull/3121)

#### New Contributors

- [@&#8203;wolpl](https://github.com/wolpl) made their first
contribution in
[https://github.com/arrow-kt/arrow/pull/3096](https://github.com/arrow-kt/arrow/pull/3096)

**Full Changelog**:
arrow-kt/arrow@1.2.0...1.2.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/sindrenm/android-project-template).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
nomisRev referenced this pull request in arrow-kt/arrow-website Sep 7, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[io.arrow-kt:arrow-optics-reflect](https://github.com/arrow-kt/arrow)
| `1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics-reflect/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics-reflect/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics-reflect/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics-reflect/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[io.arrow-kt:arrow-optics-ksp-plugin](https://github.com/arrow-kt/arrow)
| `1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-optics](https://github.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-fx-stm](https://github.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-fx-stm/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-fx-stm/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-fx-stm/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-fx-stm/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-resilience](https://github.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-resilience/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-resilience/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-resilience/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-resilience/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-fx-coroutines](https://github.com/arrow-kt/arrow)
| `1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-fx-coroutines/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-fx-coroutines/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-fx-coroutines/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-fx-coroutines/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-core](https://github.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-core/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-core/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-core/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-core/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>arrow-kt/arrow (io.arrow-kt:arrow-optics-reflect)</summary>

### [`v1.2.1`](https://github.com/arrow-kt/arrow/releases/tag/1.2.1)

[Compare
Source](https://github.com/arrow-kt/arrow/compare/1.2.0...1.2.1)

#### What's Changed

- Fix Option.tap deprecation message. by
[@&#8203;wolpl](https://github.com/wolpl) in
[https://github.com/arrow-kt/arrow/pull/3096](https://github.com/arrow-kt/arrow/pull/3096)
- Fix problem with optics and <\*> generics by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3097](https://github.com/arrow-kt/arrow/pull/3097)
- Backport fix for K2 by [@&#8203;serras](https://github.com/serras)
in
[https://github.com/arrow-kt/arrow/pull/3098](https://github.com/arrow-kt/arrow/pull/3098)
- ignoreErrors for Raise by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3100](https://github.com/arrow-kt/arrow/pull/3100)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3085](https://github.com/arrow-kt/arrow/pull/3085)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3101](https://github.com/arrow-kt/arrow/pull/3101)
- Update all dependencies to v0.12.0-rc.5 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3102](https://github.com/arrow-kt/arrow/pull/3102)
- Update all dependencies to v1.9.0-1.0.12 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3103](https://github.com/arrow-kt/arrow/pull/3103)
- Update all dependencies to v5.10.0 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3104](https://github.com/arrow-kt/arrow/pull/3104)
- Remove references to shift in Either.kt by
[@&#8203;nomisRev](https://github.com/nomisRev) in
[https://github.com/arrow-kt/arrow/pull/3105](https://github.com/arrow-kt/arrow/pull/3105)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3106](https://github.com/arrow-kt/arrow/pull/3106)
- Update dependency org.jetbrains.kotlinx.kover to v0.7.3 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3107](https://github.com/arrow-kt/arrow/pull/3107)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3112](https://github.com/arrow-kt/arrow/pull/3112)
- `parMapNotNull` by [@&#8203;raulraja](https://github.com/raulraja)
in
[https://github.com/arrow-kt/arrow/pull/3110](https://github.com/arrow-kt/arrow/pull/3110)
- `parMapNotNullUnordered` for `Flow` by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3111](https://github.com/arrow-kt/arrow/pull/3111)
- Enable experimental K2 by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3087](https://github.com/arrow-kt/arrow/pull/3087)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3118](https://github.com/arrow-kt/arrow/pull/3118)
- Update dependency com.diffplug.spotless to v6.21.0 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3119](https://github.com/arrow-kt/arrow/pull/3119)
- Inline `NonEmpty` maps by
[@&#8203;serras](https://github.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3120](https://github.com/arrow-kt/arrow/pull/3120)
- Remove enableCompatibilityMetadataVariant by
[@&#8203;nomisRev](https://github.com/nomisRev) in
[https://github.com/arrow-kt/arrow/pull/3124](https://github.com/arrow-kt/arrow/pull/3124)
- Update actions/checkout action to v4 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3125](https://github.com/arrow-kt/arrow/pull/3125)
- Update all dependencies by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3121](https://github.com/arrow-kt/arrow/pull/3121)

#### New Contributors

- [@&#8203;wolpl](https://github.com/wolpl) made their first
contribution in
[https://github.com/arrow-kt/arrow/pull/3096](https://github.com/arrow-kt/arrow/pull/3096)

**Full Changelog**:
arrow-kt/arrow@1.2.0...1.2.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/arrow-kt/arrow-website).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

["Request"] Ease NonEmptyCollection methods usage calling suspend
4 participants