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
It would be very nice to have constants like Int::MAX, Int::MIN, Double::MAX, Double::MIN that determine the sizes of numeric types available on the available backend.
As an alternate design, for my use case, I'd also be fine if we limited these by the "worst" backend so that they're uniform. This means that Int::MAX would return 2^53 - 1 even on LLVM.
It would be very nice to have constants like Int::MAX, Int::MIN, Double::MAX, Double::MIN that determine the sizes of numeric types available on the available backend.
So for Int::MAX, we'd get:
Feel free to bikeshed the exact names: my intuition was to make a
namespace Int
and anamespace Double
and put the constants there?The text was updated successfully, but these errors were encountered: