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
To display the contents of an ApInt users currently can only use its implementation of fmt::Debug. This is unfortunate for cases where the user just requires simple printing of values instead of debug-vision into the internals of an ApInt instance.
In issue 0x0asd the traits fmt::Binary, fmt::Octal, fmt::LowerHex and fmt::UpperHex are already proposed. These are simpler to implement as they do not depend on arithmetic components of ApInt that still have no robust implementation.
However, since decimal display representation is for many users the favoured representation this has high priority and should be implemented as soon as possible.
Implement fmt::Display for decimal representation of an ApInt instance's value.
Blocked By
Arithmetic Module
The text was updated successfully, but these errors were encountered:
To display the contents of an
ApInt
users currently can only use its implementation offmt::Debug
. This is unfortunate for cases where the user just requires simple printing of values instead of debug-vision into the internals of anApInt
instance.In issue 0x0asd the traits
fmt::Binary
,fmt::Octal
,fmt::LowerHex
andfmt::UpperHex
are already proposed. These are simpler to implement as they do not depend on arithmetic components ofApInt
that still have no robust implementation.However, since decimal display representation is for many users the favoured representation this has high priority and should be implemented as soon as possible.
fmt::Display
for decimal representation of anApInt
instance's value.Blocked By
The text was updated successfully, but these errors were encountered: