Skip to content

Commit 40208a1

Browse files
authored
Merge pull request #873 from polyadic/release-3.6
Release 3.6
2 parents dca54e9 + 53dead5 commit 40208a1

File tree

7 files changed

+538
-529
lines changed

7 files changed

+538
-529
lines changed

Funcky.Async/Extensions/AsyncEnumerableExtensions/Scan.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Funcky.Extensions;
55
public static partial class AsyncEnumerableExtensions
66
{
77
/// <summary>
8-
/// Scan generates a sequence known as the the inclusive prefix sum.
8+
/// Scan generates a sequence known as the inclusive prefix sum.
99
/// </summary>
1010
/// <typeparam name="TSource">The type of the source elements.</typeparam>
1111
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -17,7 +17,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScan<TSource, TAccumulate>(
1717
=> InclusiveScanEnumerable(source, seed, accumulator);
1818

1919
/// <summary>
20-
/// Scan generates a sequence known as the the inclusive prefix sum.
20+
/// Scan generates a sequence known as the inclusive prefix sum.
2121
/// </summary>
2222
/// <typeparam name="TSource">The type of the source elements.</typeparam>
2323
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -29,7 +29,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwait<TSource, TAccumul
2929
=> InclusiveScanAwaitEnumerable(source, seed, accumulator);
3030

3131
/// <summary>
32-
/// Scan generates a sequence known as the the inclusive prefix sum.
32+
/// Scan generates a sequence known as the inclusive prefix sum.
3333
/// </summary>
3434
/// <typeparam name="TSource">The type of the source elements.</typeparam>
3535
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -41,7 +41,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwaitWithCancellation<T
4141
=> InclusiveScanAwaitWithCancellationEnumerable(source, seed, accumulator);
4242

4343
/// <summary>
44-
/// Scan generates a sequence known as the the exclusive prefix sum.
44+
/// Scan generates a sequence known as the exclusive prefix sum.
4545
/// </summary>
4646
/// <typeparam name="TSource">The type of the source elements.</typeparam>
4747
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -53,7 +53,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScan<TSource, TAccumulate>(
5353
=> ExclusiveScanEnumerable(source, seed, accumulator);
5454

5555
/// <summary>
56-
/// Scan generates a sequence known as the the exclusive prefix sum.
56+
/// Scan generates a sequence known as the exclusive prefix sum.
5757
/// </summary>
5858
/// <typeparam name="TSource">The type of the source elements.</typeparam>
5959
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -65,7 +65,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScanAwait<TSource, TAccumul
6565
=> ExclusiveScanAwaitEnumerable(source, seed, accumulator);
6666

6767
/// <summary>
68-
/// Scan generates a sequence known as the the exclusive prefix sum.
68+
/// Scan generates a sequence known as the exclusive prefix sum.
6969
/// </summary>
7070
/// <typeparam name="TSource">The type of the source elements.</typeparam>
7171
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>

Funcky/Extensions/AsyncEnumerableExtensions/Scan.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Funcky.Extensions;
66
public static partial class AsyncEnumerableExtensions
77
{
88
/// <summary>
9-
/// Scan generates a sequence known as the the inclusive prefix sum.
9+
/// Scan generates a sequence known as the inclusive prefix sum.
1010
/// </summary>
1111
/// <typeparam name="TSource">The type of the source elements.</typeparam>
1212
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -18,7 +18,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScan<TSource, TAccumulate>(
1818
=> InclusiveScanEnumerable(source, seed, accumulator);
1919

2020
/// <summary>
21-
/// Scan generates a sequence known as the the inclusive prefix sum.
21+
/// Scan generates a sequence known as the inclusive prefix sum.
2222
/// </summary>
2323
/// <typeparam name="TSource">The type of the source elements.</typeparam>
2424
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -30,7 +30,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwait<TSource, TAccumul
3030
=> InclusiveScanAwaitEnumerable(source, seed, accumulator);
3131

3232
/// <summary>
33-
/// Scan generates a sequence known as the the inclusive prefix sum.
33+
/// Scan generates a sequence known as the inclusive prefix sum.
3434
/// </summary>
3535
/// <typeparam name="TSource">The type of the source elements.</typeparam>
3636
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -42,7 +42,7 @@ public static IAsyncEnumerable<TAccumulate> InclusiveScanAwaitWithCancellation<T
4242
=> InclusiveScanAwaitWithCancellationEnumerable(source, seed, accumulator);
4343

4444
/// <summary>
45-
/// Scan generates a sequence known as the the exclusive prefix sum.
45+
/// Scan generates a sequence known as the exclusive prefix sum.
4646
/// </summary>
4747
/// <typeparam name="TSource">The type of the source elements.</typeparam>
4848
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -54,7 +54,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScan<TSource, TAccumulate>(
5454
=> ExclusiveScanEnumerable(source, seed, accumulator);
5555

5656
/// <summary>
57-
/// Scan generates a sequence known as the the exclusive prefix sum.
57+
/// Scan generates a sequence known as the exclusive prefix sum.
5858
/// </summary>
5959
/// <typeparam name="TSource">The type of the source elements.</typeparam>
6060
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -66,7 +66,7 @@ public static IAsyncEnumerable<TAccumulate> ExclusiveScanAwait<TSource, TAccumul
6666
=> ExclusiveScanAwaitEnumerable(source, seed, accumulator);
6767

6868
/// <summary>
69-
/// Scan generates a sequence known as the the exclusive prefix sum.
69+
/// Scan generates a sequence known as the exclusive prefix sum.
7070
/// </summary>
7171
/// <typeparam name="TSource">The type of the source elements.</typeparam>
7272
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>

Funcky/Extensions/EnumerableExtensions/Scan.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace Funcky.Extensions;
33
public static partial class EnumerableExtensions
44
{
55
/// <summary>
6-
/// Scan generates a sequence known as the the inclusive prefix sum.
6+
/// Scan generates a sequence known as the inclusive prefix sum.
77
/// </summary>
88
/// <typeparam name="TSource">The type of the source elements.</typeparam>
99
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>
@@ -23,7 +23,7 @@ public static IEnumerable<TAccumulate> InclusiveScan<TSource, TAccumulate>(this
2323
}
2424

2525
/// <summary>
26-
/// Scan generates a sequence known as the the exclusive prefix sum.
26+
/// Scan generates a sequence known as the exclusive prefix sum.
2727
/// </summary>
2828
/// <typeparam name="TSource">The type of the source elements.</typeparam>
2929
/// <typeparam name="TAccumulate">The seed and target type.</typeparam>

Funcky/Funcky.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Product>Funcky</Product>
88
<Description>Funcky is a functional C# library</Description>
99
<PackageTags>Functional Monad Linq</PackageTags>
10-
<VersionPrefix>3.5.1</VersionPrefix>
10+
<VersionPrefix>3.6.0</VersionPrefix>
1111
<IncludeSymbols>true</IncludeSymbols>
1212
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>

0 commit comments

Comments
 (0)