We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e282d81 commit 2db8edfCopy full SHA for 2db8edf
src/LinkDotNet.StringBuilder/ValueStringBuilder.Append.cs
@@ -136,6 +136,11 @@ public void AppendLine(scoped ReadOnlySpan<char> str)
136
Append(string.Concat(str, Environment.NewLine));
137
}
138
139
+ /// <summary>
140
+ /// Increases the size of the string builder returning a span of the length appended.
141
+ /// </summary>
142
+ /// <param name="length">Integer representing the length to be appended.</param>
143
+ /// <returns>A span with the characters appended.</returns>
144
[MethodImpl(MethodImplOptions.AggressiveInlining)]
145
public Span<char> AppendSpan(int length)
146
{
0 commit comments