Skip to content

Commit

Permalink
Merge pull request #95 from brian6932/patch-1
Browse files Browse the repository at this point in the history
typo in readme: `Convinient`->`Convenient`
  • Loading branch information
neuecc authored Oct 12, 2023
2 parents 7629cf7 + e70b5eb commit f312727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ZString
* All append methods are generics(`Append<T>(T value)`) and write to buffer directly instead of concatenate `value.ToString`
* `T1`~`T16` AppendFormat(`AppendFormat<T1,...,T16>(string format, T1 arg1, ..., T16 arg16)` avoids boxing of struct argument
* Also `T1`~`T16` Concat(`Concat<T1,...,T16>(T1 arg1, ..., T16 arg16)`) avoid boxing and `value.ToString` allocation
* Convinient `ZString.Format/Concat/Join` methods can replace instead of `String.Format/Concat/Join`
* Convenient `ZString.Format/Concat/Join` methods can replace instead of `String.Format/Concat/Join`
* Can build both Utf16(`Span<char>`) and Utf8(`Span<byte>`) directly
* Can use inner buffer to avoid allocate final string
* Integrated with Unity TextMeshPro to avoid string allocation
Expand Down

0 comments on commit f312727

Please sign in to comment.