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
I'm using widestring to implement R7RS/R6RS Scheme VM and to convert number to string I have first to use to_string that creates String and after this I use U32String::from_str which does 2 heap allocations.
The text was updated successfully, but these errors were encountered:
Added std::fmt::Write trait implementation for UString. This means you'll be able to do write!(ustr, "{}", 1234) and avoid the heap allocations, or for any other string formatting.
I'm using widestring to implement R7RS/R6RS Scheme VM and to convert number to string I have first to use
to_string
that createsString
and after this I useU32String::from_str
which does 2 heap allocations.The text was updated successfully, but these errors were encountered: