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
results in a column: a: Number. This can cause issues with statistics like std, as they don't support Numbers as of now: #558
It might be easier to work with if numbers would converge in the closest common ancestor in terms of information. For instance: Int + Double + Float => Float, since Floats can store all information a Double and Int holds.
This would need to be carefully considered, however, as it's inconsistent with Kotlin's type inference.
The text was updated successfully, but these errors were encountered:
Currently, numbers are inferred similar to type inference in Kotlin.
For instance:
results in a column:
a: Number
. This can cause issues with statistics likestd
, as they don't supportNumber
s as of now: #558It might be easier to work with if numbers would converge in the closest common ancestor in terms of information. For instance:
Int + Double + Float => Float
, sinceFloat
s can store all information aDouble
andInt
holds.This would need to be carefully considered, however, as it's inconsistent with Kotlin's type inference.
The text was updated successfully, but these errors were encountered: