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
ustring design is amazing because it allows you to bring your own string. That said, the default stack should at least contain an implementation that does allocation-less string concatenation by holding a chain of ustrings internally.
class ChainUString : ustring {
ustring this;
ustring next;
}
The text was updated successfully, but these errors were encountered:
ustring
design is amazing because it allows you tobring your own string
. That said, the default stack should at least contain an implementation that does allocation-less string concatenation by holding a chain of ustrings internally.The text was updated successfully, but these errors were encountered: