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 4bd5ff6 commit 5e15288Copy full SHA for 5e15288
Sources/Falko.ZeroLogger/Builders/ValueStringBuilder.cs
@@ -74,11 +74,7 @@ public void Append(string symbols)
74
[MethodImpl(MethodImplOptions.AggressiveInlining)]
75
public void Append(char symbol, int repeat)
76
{
77
- for (var iteration = 0; iteration < repeat; iteration++)
78
- {
79
- _span[_position + iteration] = symbol;
80
- }
81
-
+ _span.Slice(_position, repeat).Fill(symbol);
82
_position += repeat;
83
}
84
0 commit comments