Tags C++17 Book Review: Real-Time C++ admin December 23, 2018 Title: Real-Time C++: Efficient Object-Oriented and Template Microcontroller Programming Author: Christopher Kormanyos Publisher: Springer-Verlag Year: 2018 (Third Edition) It was
Tags C++17 C++17 – std::apply() and std::invoke() admin October 14, 2018 Calling a function (or function object) dynamically, through a pointer known at runtime, is a common programming scenario. Almost all
Tags C++11 Book Review – The Modern C++ Challenge admin July 8, 2018 Title: The Modern C++ Challenge Author: Marius Bancilla Publisher: Packt Publishing Year: May 2018 This week I have been going
Tags C++17 C++17: constexpr if admin December 17, 2017 constexpr if is another nice little feature in C++17, which significantly simplifies the way we code, especially in the context
Tags C++17 C++17: std::any admin December 3, 2017 In the previous two posts, I talked about std::variant<> and std::optional<>. Today, I want to take up std::any for discussion.
Tags C++17 C++17: std::optional<> admin November 21, 2017 Suppose we want to write a function that returns a value, but with the possibility that the computation might fail.
Tags C++17 C++17: std::variant<> admin November 5, 2017 C++17 introduces a new type-safe union in the form of std::variant. At any time, it can store a single value
Tags C++17 C++17: Initialization in Selection Statements admin October 21, 2017 C++17 enhances if and switch statements with the ability to define variables whose life-time is limited to the corresponding scope.