Difference between revisions of "STD Gems"
From Chilipedia
(→List of Tutorials) |
(→List of Tutorials) |
||
Line 25: | Line 25: | ||
* Covered: <code>copy</code> <code>copy_if</code> <code>copy_n</code> <code>copy_backward</code> <code>move</code> <code>move_backward</code> <code>swap_ranges</code> | * Covered: <code>copy</code> <code>copy_if</code> <code>copy_n</code> <code>copy_backward</code> <code>move</code> <code>move_backward</code> <code>swap_ranges</code> | ||
* Reviewed: <code>back_inserter</code> <code>make_move_iterator</code> <code>istream_iterator</code> <code>ostream_iterator</code> <code>isupper</code> | * Reviewed: <code>back_inserter</code> <code>make_move_iterator</code> <code>istream_iterator</code> <code>ostream_iterator</code> <code>isupper</code> | ||
+ | |- style="border:1px solid grey;background-color:#667;color:#c1c1c1;text-align:center;" | ||
+ | | style="border:1px solid grey;"|2 | ||
+ | | style="border:1px solid grey;text-align:left;"|[https://youtu.be/Fw1AKu1s_aE <nowiki>STD Gems [remove_if bois]</nowiki>] | ||
+ | | style="border:1px solid grey;"|May 30, 2018 | ||
+ | | style="border:1px solid grey;"|14:24 | ||
+ | |- style="background-color:#333;color:#c1c1c1;" | ||
+ | | style="border:1px solid grey;padding:8px;" colspan="4" | | ||
+ | * Covered: <code>remove</code> <code>remove_if</code> <code>remove_copy</code> <code>remove_copy_if</code> <code>replace</code> <code>replace_if</code> <code>replace_copy</code> <code>replace_copy_if</code> <code>unique</code> <code>unique_copy</code> | ||
|} | |} |
Revision as of 22:59, 30 May 2018
STD Gems is a series that will introduce useful tools from the standard library in bite-sized (typically 10-18 minute long) videos. The series will mainly focus on teaching the functions from the <algorithm>
library, but will also branch off into other areas of the standard library, such as lesser-known containers like std::deque
or the different kinds of distributions in <random>
.
List of Tutorials
Tutorial Number | Title | Release Date | Runtime |
0 | STD Gems [Overview] | May 10, 2018 | 4:59 |
Just an overview of the STD Gems series. | |||
1 | STD Gems [Copy / Filter] | May 16, 2018 | 15:24 |
| |||
2 | STD Gems [remove_if bois] | May 30, 2018 | 14:24 |
|