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
Now that scala/scala3#7380 has been fixed, we can replace this idiom:
using m: Mirror.ProductOf[P], i: m.MirroredElemTypes=:=A*:EmptyTuple
with:
using m: Mirror.ProductOf[P] { typeMirroredElemTypes=A*:EmptyTuple }
To retain binary compatibility, we'd have to retain the existing signatures as private[skunk] for the various operations that have already been released. See scodec/scodec@919f964 for a similar change that was done to scodec.
The text was updated successfully, but these errors were encountered:
Now that scala/scala3#7380 has been fixed, we can replace this idiom:
with:
To retain binary compatibility, we'd have to retain the existing signatures as
private[skunk]
for the various operations that have already been released. See scodec/scodec@919f964 for a similar change that was done to scodec.The text was updated successfully, but these errors were encountered: