From 6e22a97a685096078c4cebba8681ec8ea8da9b8c Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Wed, 18 Jul 2018 17:02:13 -0600 Subject: [PATCH] Update 08-Considering_Performance.md --- 08-Considering_Performance.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/08-Considering_Performance.md b/08-Considering_Performance.md index bfe53b4..7c651f6 100644 --- a/08-Considering_Performance.md +++ b/08-Considering_Performance.md @@ -331,3 +331,13 @@ f("world"); auto f = [](const std::string &s) { return my_function("hello", s); }; f("world"); ``` + + +### Know The Standard Library + +Properly use the already highly optimized components of the vendor provided standard library. + +#### `in_place_t` And Related + +Be aware of how to use `in_place_t` and related tags for effecient creation of objects such as `std::tuple`, `std::any` and `std::variant`. +