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
Similar to the proposed variant type, works a bit like Excel. The type will automatically change based on its input, functioning similarly to a union prefix type (so it's transparent to the user in the Window AutoComplete what the type will be processed as).
E.g.
123 -> number
"123" -> string
hello -> string
true -> boolean
The text was updated successfully, but these errors were encountered:
Which types of values would this be limited to?
I'm assuming it would just be the standard nil, boolean, number & string - but it might be interesting to see tables be possible with this
Similar to the proposed
variant
type, works a bit like Excel. The type will automatically change based on its input, functioning similarly to a union prefix type (so it's transparent to the user in the Window AutoComplete what the type will be processed as).E.g.
123
-> number"123"
-> stringhello
-> stringtrue
-> booleanThe text was updated successfully, but these errors were encountered: