User-defined literals -- Marius Bancila

Today on the Codexpert blog:
User-defined literals
by Marius Bancila
From the article:
The C++11 standard introduced the possibility to create user-defined literals, that are basically built-in type literals (
integer,float,charor string) followed by a used-defined suffix. User-defined literals enable the creation of new objects based on the built-in literal value and the applied user-defined suffix.auto temp = 77_fah; // 77 Fahrenheit degrees = 25 Celsius degrees auto size = 1_KB; // 1 kilobyte = 1024 bytes auto emp = "marius"_dev; // a user defined type Developer

Fresh over the weekend, and
New in Eric's series on ranges for C++:
ACCU 2015 is now putting together its program, and they want you to speak on C++. ACCU has long had a strong C++ track, though it is not a C++-only conference. If you have something to share, check out the call for papers.