New: cpp17All contenthive-129948hive-196917krhive-180932steemhive-150122hive-183959zzanhive-185836hive-144064hive-101145hive-166405hive-188619hive-184714photographyuncommonlabhive-183397hive-145157bitcoinhive-103599hive-139150steem-atlashive-180301hive-170554hive-193186TrendingNewHotLikersoddman621 (25)in coding • 7 years ago[C++17] Inline VariablePattern inline auto var = [value]; Description C++ consist a lot of source files. They are compiled, linked into single binary file. When linking, it occurs error when you defined some symbols…oddman621 (25)in coding • 7 years ago[C++17] Reduce Compile Time with constexpr-ifPattern if constexpr(condition){ /* do something / } else ifconstexpr(condition){ / do something */ } Description constexpr-if looks very similar to if-else. The difference is that…oddman621 (25)in coding • 7 years ago[C++17]Limiting Variable Scopes to if and switchPattern if(auto var(...); condition) /* do something /; switch(auto var(...); var) {/ do something */} Description When we want to find a key in std::map, we have to make iterator to store…