Skip to content

Commit ffd0602

Browse files
committed
Add Mark Heath's videos on zipping operators
1 parent 61c571a commit ffd0602

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

Diff for: m/equi-zip.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ if the input sequences are of different lengths.
88
// TODO add example
99
```
1010

11+
See also [Exploring MoreLINQ Part 1 - Zipping] by [Mark Heath] and his video
12+
that covers `EquiZip`:
13+
14+
[![Video by Mark Heath](http://img.youtube.com/vi/LmeTMUptJPo/0.jpg)](https://youtu.be/LmeTMUptJPo "MoreLINQ 1 - EquiZip, ZipLongest ZipShortest")
15+
1116
For more details, [see the documentation][doc].
1217

1318
---
@@ -19,3 +24,5 @@ improvement. Alternatively, you can also [report an issue you see][issue].
1924
[edit]: https://github.com/morelinq/try/edit/master/m/equi-zip.md
2025
[issue]: https://github.com/morelinq/try/issues/new?title=EquiZip
2126
[doc]: https://morelinq.github.io/3.1/ref/api/html/Overload_MoreLinq_MoreEnumerable_EquiZip.htm
27+
[Exploring MoreLINQ Part 1 - Zipping]: https://markheath.net/post/exploring-morelinq-1-zipping
28+
[Mark Heath]: https://markheath.net/

Diff for: m/zip-longest.md

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ for padding.
1010
// TODO add example
1111
```
1212

13+
See also [Exploring MoreLINQ Part 1 - Zipping] by [Mark Heath] and his video
14+
that covers `ZipLongest`:
15+
16+
[![Video by Mark Heath](http://img.youtube.com/vi/LmeTMUptJPo/0.jpg)](https://youtu.be/LmeTMUptJPo "MoreLINQ 1 - EquiZip, ZipLongest ZipShortest")
17+
1318
For more details, [see the documentation][doc].
1419

1520
---
@@ -21,3 +26,5 @@ improvement. Alternatively, you can also [report an issue you see][issue].
2126
[edit]: https://github.com/morelinq/try/edit/master/m/zip-longest.md
2227
[issue]: https://github.com/morelinq/try/issues/new?title=ZipLongest
2328
[doc]: https://morelinq.github.io/3.1/ref/api/html/Overload_MoreLinq_MoreEnumerable_ZipLongest.htm
29+
[Exploring MoreLINQ Part 1 - Zipping]: https://markheath.net/post/exploring-morelinq-1-zipping
30+
[Mark Heath]: https://markheath.net/

Diff for: m/zip-shortest.md

+7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ var zipped = numbers.ZipShortest(letters, chars, flags, (n, l, c, f) => n + l +
1313
WriteLine(zipped);
1414
```
1515

16+
See also [Exploring MoreLINQ Part 1 - Zipping] by [Mark Heath] and his video
17+
that covers `ZipShortest`:
18+
19+
[![Video by Mark Heath](http://img.youtube.com/vi/LmeTMUptJPo/0.jpg)](https://youtu.be/LmeTMUptJPo "MoreLINQ 1 - EquiZip, ZipLongest ZipShortest")
20+
1621
For more details, [see the documentation][doc].
1722

1823
---
@@ -24,3 +29,5 @@ improvement. Alternatively, you can also [report an issue you see][issue].
2429
[edit]: https://github.com/morelinq/try/edit/master/m/zip-shortest.md
2530
[issue]: https://github.com/morelinq/try/issues/new?title=ZipShortest
2631
[doc]: https://morelinq.github.io/3.1/ref/api/html/Overload_MoreLinq_MoreEnumerable_ZipShortest.htm
32+
[Exploring MoreLINQ Part 1 - Zipping]: https://markheath.net/post/exploring-morelinq-1-zipping
33+
[Mark Heath]: https://markheath.net/

0 commit comments

Comments
 (0)