Difference between revisions of "STD Gems"

From Chilipedia
Jump to: navigation, search
Line 24: Line 24:
 
| style="border:1px solid grey;padding:8px;" colspan="4" |
 
| style="border:1px solid grey;padding:8px;" colspan="4" |
 
* 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>
+
* Reviewed: <code>back_inserter</code> <code>make_move_iterator</code> <code>istream_iterator</code> <code>ostream_iterator</code>
 
|}
 
|}

Revision as of 19:58, 16 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:45
  • Covered: copy copy_if copy_n copy_backward move move_backward swap_ranges
  • Reviewed: back_inserter make_move_iterator istream_iterator ostream_iterator