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 d49710e commit cd0e0d6Copy full SHA for cd0e0d6
src/Common/Results/ResultOfT.cs
@@ -4,7 +4,7 @@
4
/// Represents the result of an operation.
5
/// </summary>
6
/// <typeparam name="T">A value associated to the result.</typeparam>
7
-internal readonly struct Result<T>
+internal readonly ref struct Result<T>
8
{
9
/// <summary>
10
/// Gets the value associated with the result.
src/Parser/Line.cs
@@ -3,7 +3,7 @@ namespace YeSql.Net;
3
/// Represents a line of text from a file.
-internal readonly struct Line
+internal readonly ref struct Line
/// Gets the number/position of the line.
0 commit comments