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
Surface.of[1] // ObjectSurface.of[Int] // ObjectSurface.of[Seq[Int]].toString() =="Seq[Object]"// All of these return Object if run in this orderSurface.of[1.0]
Surface.of[Double]
Surface.of['a']
Surface.of[Char]
Surface.of[true]
Surface.of[Boolean]
This happens because fullTypeNameOf returns the same key for 1 and Int, and genericSurfaceFactory returns Object for 1.
The text was updated successfully, but these errors were encountered:
This happens because
fullTypeNameOf
returns the same key for1
andInt
, andgenericSurfaceFactory
returnsObject
for1
.The text was updated successfully, but these errors were encountered: