-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSharpCodeBuilder.AppendLine.cs
More file actions
132 lines (119 loc) · 7.55 KB
/
CSharpCodeBuilder.AppendLine.cs
File metadata and controls
132 lines (119 loc) · 7.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
namespace NetEvolve.CodeBuilder;
using System;
using System.Runtime.CompilerServices;
public partial class CSharpCodeBuilder
{
/// <summary>
/// Appends a line terminator to the current builder.
/// </summary>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>
/// This method appends the default line terminator for the current environment and sets the internal state
/// to indicate that the next character will be at the beginning of a new line.
/// </remarks>
public CSharpCodeBuilder AppendLine()
{
EnsureIndented(true);
_ = _builder.AppendLine();
_isNewline = true;
return this;
}
/// <summary>
/// Appends a string followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The string to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the string is null or empty, only the line terminator is appended.</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(string? value) => Append(value).AppendLine();
/// <summary>
/// Appends a read-only memory of characters followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The read-only memory containing the characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the memory is empty, only the line terminator is appended.</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(ReadOnlyMemory<char> value) => Append(value).AppendLine();
/// <summary>
/// Appends a subset of a read-only memory of characters followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The read-only memory containing the characters to append.</param>
/// <param name="startIndex">The starting position in the memory.</param>
/// <param name="count">The number of characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the memory is empty, only the line terminator is appended.</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(ReadOnlyMemory<char> value, int startIndex, int count) =>
Append(value, startIndex, count).AppendLine();
/// <summary>
/// Appends a read-only span of characters followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The read-only span containing the characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the span is empty, only the line terminator is appended.</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(ReadOnlySpan<char> value) => Append(value).AppendLine();
/// <summary>
/// Appends a subset of a read-only span of characters followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The read-only span containing the characters to append.</param>
/// <param name="startIndex">The starting position in the span.</param>
/// <param name="count">The number of characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the span is empty, only the line terminator is appended.</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(ReadOnlySpan<char> value, int startIndex, int count) =>
Append(value, startIndex, count).AppendLine();
/// <summary>
/// Appends an array of characters followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The character array to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the array is null or empty, only the line terminator is appended.</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(char[]? value) => Append(value).AppendLine();
/// <summary>
/// Appends a subset of an array of characters followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The character array to append.</param>
/// <param name="startIndex">The starting position in the character array.</param>
/// <param name="charCount">The number of characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the array is null or empty, only the line terminator is appended.</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(char[]? value, int startIndex, int charCount) =>
Append(value, startIndex, charCount).AppendLine();
/// <summary>
/// Appends characters from a pointer followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">A pointer to a character array.</param>
/// <param name="length">The number of characters to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>If the pointer is null or length is negative, only the line terminator is appended.</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public unsafe CSharpCodeBuilder AppendLine(char* value, int length) => Append(value, length).AppendLine();
/// <summary>
/// Appends a character followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The character to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(char value) => Append(value).AppendLine();
/// <summary>
/// Appends a character repeated a specified number of times followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The character to append.</param>
/// <param name="repeatCount">The number of times to repeat the character.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <exception cref="ArgumentOutOfRangeException">Thrown when <paramref name="repeatCount"/> is less than zero.</exception>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(char value, int repeatCount) => Append(value, repeatCount).AppendLine();
/// <summary>
/// Appends a boolean value followed by a line terminator to the current builder.
/// </summary>
/// <param name="value">The boolean value to append.</param>
/// <returns>The current <see cref="CSharpCodeBuilder"/> instance to allow for method chaining.</returns>
/// <remarks>Appends either <see langword="true"/> or <see langword="false"/> based on the value, followed by a line terminator.</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public CSharpCodeBuilder AppendLine(bool value) => Append(value).AppendLine();
}