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
SIP23 will be merged into Scala 2.xx sometime in the future (currently merged into TLS).
Its implementation has a ValueOf type class that enables us to request the literal values from literal types. E.g.:
def foo[T](implicit i : ValueOf[T]) : T = valueOf[T]
Since we want to have Scala 2.xx and Scala 3.xx to be the same in the future, it is important to keep this feature.
The text was updated successfully, but these errors were encountered:
SIP23 will be merged into Scala 2.xx sometime in the future (currently merged into TLS).
Its implementation has a
ValueOf
type class that enables us to request the literal values from literal types. E.g.:Since we want to have Scala 2.xx and Scala 3.xx to be the same in the future, it is important to keep this feature.
The text was updated successfully, but these errors were encountered: