-
-
Notifications
You must be signed in to change notification settings - Fork 9
Type Casting
IsaacShelton edited this page Mar 21, 2022
·
1 revision
Values of types can be casted to different types using the as
or cast
keywords
my_value as DifferentType
cast DifferentType my_value
See casts for more in-depth information