Fixed missed default token

This commit is contained in:
Thorsten Sommer 2020-09-26 21:37:41 +02:00
parent 7d224e3832
commit d9aa453003
3 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ namespace FastRng.Double.Distributions
}
}
public async ValueTask<double> GetDistributedValue(CancellationToken token)
public async ValueTask<double> GetDistributedValue(CancellationToken token = default)
{
if (this.Random == null)
return System.Double.NaN;

View File

@ -24,7 +24,7 @@ namespace FastRng.Double.Distributions
public double Median { get; set; } = 0.0;
public async ValueTask<double> GetDistributedValue(CancellationToken token)
public async ValueTask<double> GetDistributedValue(CancellationToken token = default)
{
if (this.Random == null)
return System.Double.NaN;

View File

@ -26,7 +26,7 @@ namespace FastRng.Double.Distributions
public double Scale { get; set; } = 1.0;
public async ValueTask<double> GetDistributedValue(CancellationToken token)
public async ValueTask<double> GetDistributedValue(CancellationToken token = default)
{
if (this.Random == null)
return System.Double.NaN;