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 07b41ce commit d86b9b5Copy full SHA for d86b9b5
Core/Cleipnir.ResilientFunctions/Messaging/Option.cs
@@ -4,7 +4,7 @@
4
5
namespace Cleipnir.ResilientFunctions.Messaging;
6
7
-public class Option<T>(T v, bool hasValue)
+public sealed class Option<T>(T v, bool hasValue)
8
{
9
public static Option<T> NoValue { get; } = new(default!, hasValue: false);
10
public bool HasValue { get; } = hasValue;
0 commit comments