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
Event though a ud is stored on the heap and not in a Value, we could imagine being able to write a literal ud value rather than having to do parseUd("..."):
| Literal can be hex, binary or decimal like a regular integer
ud data = @0xffab3adb3298;
ud data = @1239408984;
Maybe @ will collide with free identifiers (@"my identifier")
We could also imagine being able to do everything we can do with an integer with them, even though it would be inefficient:
ud data = @0xffab3 + @1;
The text was updated successfully, but these errors were encountered:
Event though a
ud
is stored on the heap and not in aValue
, we could imagine being able to write a literalud
value rather than having to doparseUd("...")
:Maybe
@
will collide with free identifiers (@"my identifier"
)We could also imagine being able to do everything we can do with an integer with them, even though it would be inefficient:
The text was updated successfully, but these errors were encountered: