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
The filters |fmt and |format use format!(), but I think they could use format_args!(), so they don't have to allocate a string to do their work. Are there any drawbacks to replacing their format!() call with format_args!()?
The text was updated successfully, but these errors were encountered:
The filters
|fmt
and|format
useformat!()
, but I think they could useformat_args!()
, so they don't have to allocate a string to do their work. Are there any drawbacks to replacing theirformat!()
call withformat_args!()
?The text was updated successfully, but these errors were encountered: