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

attemptF - inconsistent type parameter order #204

Closed
huungry opened this issue Aug 4, 2023 · 0 comments
Closed

attemptF - inconsistent type parameter order #204

huungry opened this issue Aug 4, 2023 · 0 comments

Comments

@huungry
Copy link

huungry commented Aug 4, 2023

Hi,

I have encountered an inconsistency with the order of type parameters in the attemptF method within which could potentially cause confusion.

final class SealedFAOps {
  def attemptF[ADT, B]
}

// When using attemptF:
attemptF[FooResult, Unit]

sealed trait Sealed {
  def attemptF[B, ADT1 >: ADT]
}

// When using attemptF:
attemptF[Unit, FooResult]
luksow added a commit that referenced this issue Jan 3, 2024
pk044 pushed a commit that referenced this issue Jan 4, 2024
* Refactoring evaluation with new computation model.

* inspectF

* Small doc update

* Fixing *semi*.

* Fixing leftSemiflat*ap

* Eval refactor continued (#218)

* WIP with tailRecM

* Cleanup

* Working version. Some documentation. Dependency updates.

* Missing build changes.

* Website 2.12 update.

* Update scalafmt-core to 3.7.17 (#216)

* Update scalafmt-core to 3.7.17

* Reformat with scalafmt 3.7.17

Executed command: scalafmt --non-interactive

* Add 'Reformat with scalafmt 3.7.17' to .git-blame-ignore-revs

* Update sbt-mdoc to 2.3.8 (#213)

* Update sbt-jmh to 0.4.6 (#211)

* Update sbt-scalafmt to 2.5.2 (#209)

Co-authored-by: Łukasz Sowa <contact@luksow.com>

* Update sbt-ci-release to 1.5.12 (#190)

Co-authored-by: Łukasz Sowa <contact@luksow.com>

* Update sbt to 1.8.3 (#191)

* sbt bump

* Fixing #204

* Solving #205.

---------

Co-authored-by: Łukasz Sowa <contact@luksow.com>
Co-authored-by: Scala Steward <43047562+scala-steward@users.noreply.github.com>
@luksow luksow closed this as completed Jan 4, 2024
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

No branches or pull requests

2 participants