fitzgen / inlinable_string

An owned, grow-able UTF-8 string that stores small strings inline and avoids heap-allocation.
http://fitzgen.github.io/inlinable_string/inlinable_string/index.html
Other
69 stars 11 forks source link

copy_nonoverlapping where possible #5

Closed maciejhirsz closed 8 years ago

maciejhirsz commented 8 years ago

A very micro optimization: when copying from another place in the memory, copy_nonoverlapping should be faster.

fitzgen commented 8 years ago

Thanks!