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:
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: