Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 357 Bytes

File metadata and controls

14 lines (9 loc) · 357 Bytes

Recap


What do you remember from today's session?


C++ quirks

  • Lambda - you need to add mutable in case you have [=] on capture list and you want to modify captured elements
  • Lambda - unique_ptr on capture list a=std::move(a)
  • Try marking as many functions as constexpr as possible