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
Currently ApInt only provides printing via the fmt::Debug trait implementation which offers internal debug information about each instance but is not suitable for simple printing of values.
Due to the data structures used for ApInt the following display-traits are simple to implement and offer a decent initial starting ground:
Currently
ApInt
only provides printing via thefmt::Debug
trait implementation which offers internal debug information about each instance but is not suitable for simple printing of values.Due to the data structures used for
ApInt
the following display-traits are simple to implement and offer a decent initial starting ground:fmt::Binary
fmt::Octal
fmt::LowerHex
fmt::UpperHex
Later an implementation of
Display
for (decimal representation) may be useful but this still requires robust implementation of the arithmetic module.The text was updated successfully, but these errors were encountered: