-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into xunit-v3-serializers
- Loading branch information
Showing
47 changed files
with
479 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## AdjacentGroupBy | ||
|
||
![adjacent-group-by with marbles](adjacent-group-by.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="adjacent-group-by-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="adjacent-group-by.svg" alt="A marble diagram showing the AdjacentGroupBy operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## Interleave | ||
|
||
![interleave with marbles](interleave.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="interleave-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="interleave.svg" alt="A marble diagram showing the Interleave operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## Intersperse | ||
|
||
![intersperse with marbles](intersperse.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="intersperse-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="intersperse.svg" alt="A marble diagram showing the Interleave operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
## PairWise | ||
|
||
![pairwise with marbles](pairwise.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="pairwise-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="pairwise.svg" alt="A marble diagram showing the Pairwise operation"> | ||
</picture> | ||
</picture> | ||
|
||
### Example | ||
|
||
``` | ||
``` | ||
animals = [ 🐵, 🐶, 🐺, 🐱, 🦄, 🐷, 🦁] | ||
animals.PairWise() => | ||
[[🐵, 🐶], | ||
[🐶, 🐺], | ||
[🐺, 🐱], | ||
[🐱, 🦄], | ||
[🦄, 🐷], | ||
[🐷, 🦁]] | ||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
## Partition | ||
|
||
![partition with marbles](partition.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="partition-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="partition.svg" alt="A marble diagram showing the Partition operation"> | ||
</picture> | ||
</picture> | ||
|
||
### Example | ||
|
||
``` | ||
``` | ||
plantBasedFood = [🍉, 🍩 , 🎂, 🍌, 🍫, 🍓, 🍒, 🥕, 🌽, 🥧 ] | ||
plantBasedFood.Partition(IsProcessedFood?) | ||
plantBasedFood.Partition(IsProcessedFood?) | ||
=> [[🍩 , 🎂, 🍫, 🥧], | ||
[🍉, 🍌, 🍓, 🍒, 🥕, 🌽]] | ||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## PowerSet | ||
|
||
![power-set with marbles](power-set.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="power-set-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="power-set.svg" alt="A marble diagram showing the PowerSet operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## Shuffle | ||
|
||
![shuffle with marbles](shuffle.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="shuffle-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="shuffle.svg" alt="A marble diagram showing the Shuffle operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
## SlidingWindow | ||
|
||
![sliding-window with marbles](sliding-window.svg) | ||
|
||
<picture> | ||
<picture> | ||
<source srcset="sliding-window-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="sliding-window.svg" alt="A marble diagram showing the SlidingWindow operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## Split | ||
|
||
![split with marbles](split.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="split-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="split.svg" alt="A marble diagram showing the Split operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## TakeEvery | ||
|
||
![take-every with marbles](take-every.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="take-every-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="take-every.svg" alt="A marble diagram showing the TakeEvery operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## Transpose | ||
|
||
![transpose with marbles](transpose.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="transpose-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="transpose.svg" alt="A marble diagram showing the Transpose operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## WhereNotNull | ||
|
||
![where-not-null with marbles](where-not-null.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="where-not-null-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="where-not-null.svg" alt="A marble diagram showing the WhereNotNull operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## WhereSelect | ||
|
||
![where-select with marbles](where-select.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="where-select-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="where-select.svg" alt="A marble diagram showing the WhereSelect operation"> | ||
</picture> | ||
</picture> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## WithFirst | ||
|
||
![with-first with marbles](with-first.svg) | ||
<picture> | ||
<picture> | ||
<source srcset="with-first-dark.svg" media="(prefers-color-scheme: dark)"> | ||
<img src="with-first.svg" alt="A marble diagram showing the WithFirst operation"> | ||
</picture> | ||
</picture> |
Oops, something went wrong.