Skip to content

Commit 3a67512

Browse files
Merge branch 'refs/heads/main' into release
2 parents 93cc584 + cb7e455 commit 3a67512

File tree

5 files changed

+51
-4
lines changed

5 files changed

+51
-4
lines changed

OnixLabs.Core.UnitTests/OptionalTests.cs

+32
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,38 @@ public void OptionalOfShouldProduceExpectedResultForExplicitNonDefaultValues()
8787
Assert.Equal("abc", text);
8888
}
8989

90+
[Fact(DisplayName = "Optional.Of should produce the expected result for null nullable struct values.")]
91+
public void OptionalOfShouldProduceExpectedResultForNullNullableStructValues()
92+
{
93+
// Given / When
94+
Optional<int> number = Optional<int>.Of((int?)null);
95+
Optional<Guid> identifier = Optional<Guid>.Of((Guid?)default);
96+
97+
// Then
98+
Assert.False(number.HasValue);
99+
Assert.IsType<None<int>>(number);
100+
101+
Assert.False(identifier.HasValue);
102+
Assert.IsType<None<Guid>>(identifier);
103+
}
104+
105+
[Fact(DisplayName = "Optional.Of should produce the expected result for non-null nullable struct values.")]
106+
public void OptionalOfShouldProduceExpectedResultForNonNullNullableStructValues()
107+
{
108+
// Given / When
109+
Optional<int> number = Optional<int>.Of((int?)123);
110+
Optional<Guid> identifier = Optional<Guid>.Of((Guid?)Guid.Empty);
111+
112+
// Then
113+
Assert.True(number.HasValue);
114+
Assert.IsType<Some<int>>(number);
115+
Assert.Equal(123, number);
116+
117+
Assert.True(identifier.HasValue);
118+
Assert.IsType<Some<Guid>>(identifier);
119+
Assert.Equal(Guid.Empty, identifier);
120+
}
121+
90122
[Fact(DisplayName = "Optional.Some should produce the expected result.")]
91123
public void OptionalSomeShouldProduceExpectedResult()
92124
{

OnixLabs.Core/OnixLabs.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<NeutralLanguage>en</NeutralLanguage>
1212
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1313
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
14-
<PackageVersion>8.5.0</PackageVersion>
14+
<PackageVersion>8.6.0</PackageVersion>
1515
<PackageLicenseUrl></PackageLicenseUrl>
1616
</PropertyGroup>
1717
<PropertyGroup>

OnixLabs.Core/Optional.cs

+16-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,22 @@ internal Optional()
5353
/// Returns a new instance of the <see cref="Optional{T}"/> class, where the underlying value is present if
5454
/// the specified value is not <see langword="default"/>; otherwise, the underlying value is <see cref="None"/>.
5555
/// </returns>
56-
public static Optional<T> Of(T? value) => value is null || EqualityComparer<T>.Default.Equals(value, default) ? None : Some(value);
56+
public static Optional<T> Of(T? value) => value is not null && !EqualityComparer<T>.Default.Equals(value, default)
57+
? Some(value)
58+
: None;
59+
60+
/// <summary>
61+
/// Creates a new instance of the <see cref="Optional{T}"/> class, where the underlying value is present if
62+
/// the specified value is not <see langword="null"/>; otherwise, the underlying value is <see cref="None"/>.
63+
/// </summary>
64+
/// <param name="value">The underlying optional value.</param>
65+
/// <returns>
66+
/// Returns a new instance of the <see cref="Optional{T}"/> class, where the underlying value is present if
67+
/// the specified value is not <see langword="null"/>; otherwise, the underlying value is <see cref="None"/>.
68+
/// </returns>
69+
public static Optional<TStruct> Of<TStruct>(TStruct? value) where TStruct : struct => value.HasValue
70+
? Optional<TStruct>.Some(value.Value)
71+
: Optional<TStruct>.None;
5772

5873
/// <summary>
5974
/// Creates a new instance of the <see cref="Optional{T}"/> class, where the underlying value is present if

OnixLabs.Numerics/OnixLabs.Numerics.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.5.0</PackageVersion>
13+
<PackageVersion>8.6.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
<PackageLicenseUrl></PackageLicenseUrl>
1616
</PropertyGroup>

OnixLabs.Security.Cryptography/OnixLabs.Security.Cryptography.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
13-
<PackageVersion>8.5.0</PackageVersion>
13+
<PackageVersion>8.6.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
1515
<PackageLicenseUrl></PackageLicenseUrl>
1616
</PropertyGroup>

0 commit comments

Comments
 (0)