You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I know, import cats.syntax.all.* is now the recommended mega-import. However, it doesn't bring the instances for scala.util.control.TailCalls.TailRec - those still require import cats.instances.tailRec.*.
These instances should probably be included in the companion objects of the typeclasses themselves so that they're auto-discoverable like most other instances.
The text was updated successfully, but these errors were encountered:
@kubukoz I'm interested in helping on this issue.
As I assumed from your explanation, we need to add implicit instances of the TailRecInstances into Defer and StackSafeMonad, right? Please give me more details and help me understand the problem.
As far as I know,
import cats.syntax.all.*
is now the recommended mega-import. However, it doesn't bring the instances forscala.util.control.TailCalls.TailRec
- those still requireimport cats.instances.tailRec.*
.These instances should probably be included in the companion objects of the typeclasses themselves so that they're auto-discoverable like most other instances.
The text was updated successfully, but these errors were encountered: