1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-21 21:18:49 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
b74bf60fe8
style: perform sln-wide cleanup 2024-11-14 17:35:46 +00:00
bdef9b1442
refactor!: remove DateOnly.Deconstruct 2024-11-14 17:35:19 +00:00
5 changed files with 4 additions and 41 deletions

View File

@ -20,8 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
- X10D: Removed `DateOnly.Deconstruct` due to conflict with
[`System.DateOnly.Deconstruct`](https://learn.microsoft.com/en-us/dotnet/api/system.datetime.deconstruct?view=net-8.0).
- X10D: Removed `Span<T>.Split` for .NET 9.0 target due to conflicts with
[`System.MemoryExtensions.Split`](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.split?view=net-8.0).
[`System.MemoryExtensions.Split`](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.split?view=net-9.0).
## [4.0.0] - 2024-06-12

View File

@ -39,30 +39,6 @@ internal class DateOnlyTests
Assert.That(age, Is.EqualTo(18));
}
[Test]
public void Deconstruct_ShouldDeconstruct_GivenDateOnly()
{
var date = new DateOnly(2017, 12, 31);
date.Deconstruct(out int year, out int month, out int day);
Assert.That(year, Is.EqualTo(2017));
Assert.That(month, Is.EqualTo(12));
Assert.That(day, Is.EqualTo(31));
}
[Test]
public void Deconstruct_ShouldDeconstructToTuple_GivenDateOnly()
{
var date = new DateOnly(2017, 12, 31);
(int year, int month, int day) = date;
Assert.That(year, Is.EqualTo(2017));
Assert.That(month, Is.EqualTo(12));
Assert.That(day, Is.EqualTo(31));
}
[Test]
public void First_ShouldBeSaturday_Given1Jan2000()
{

View File

@ -1,6 +1,5 @@
using System.Buffers.Binary;
using System.Diagnostics.Contracts;
using System.Runtime.InteropServices;
namespace X10D.IO;

View File

@ -39,20 +39,6 @@ public static class DateOnlyExtensions
return value.ToDateTime(default).Age(referenceDate.ToDateTime(default));
}
/// <summary>
/// Deconstructs the current <see cref="DateOnly" /> into its year, month, and day.
/// </summary>
/// <param name="value">The date to deconstruct.</param>
/// <param name="year">When this method returns, contains the year.</param>
/// <param name="month">When this method returns, contains the month.</param>
/// <param name="day">When this method returns, contains the day.</param>
public static void Deconstruct(this DateOnly value, out int year, out int month, out int day)
{
year = value.Year;
month = value.Month;
day = value.Day;
}
/// <summary>
/// Gets a date representing the first occurence of a specified day of the week in the current month.
/// </summary>

View File

@ -6,7 +6,7 @@ namespace SourceGenerator;
public class OverloadSyntaxReceiver : ISyntaxReceiver
{
private readonly List<MethodDeclarationSyntax> _candidateMethods = new();
private readonly List<MethodDeclarationSyntax> _candidateMethods = [];
public IReadOnlyList<MethodDeclarationSyntax> CandidateMethods
{