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
When a value of type map[any,any] is cast to a variable of type map[int,int] does this involve checking if every key and value present in the map can be cast to int? Or does the cast happen immediately but the next time one reads the map, the cast is done then?
The text was updated successfully, but these errors were encountered:
When a value of type
map[any,any]
is cast to a variable of typemap[int,int]
does this involve checking if every key and value present in the map can be cast toint
? Or does the cast happen immediately but the next time one reads the map, the cast is done then?The text was updated successfully, but these errors were encountered: