Andrei Alexandrescus Opening Keynote from Meeting C++ 2018
The next big Thing
by Andrei Alexandrescu
November 14-16, Berlin, Germany
November 18-23, Wrocław, Poland
November 25, Wrocław, Poland
February 10-15, Hagenberg, Austria
March 19-21, Madrid, Spain
April 1-4, Bristol, UK
June 16-21, Sofia, Bulgaria
By Meeting C++ | Jan 12, 2019 12:45 PM | Tags: meetingcpp intermediate experimental efficiency c++17 basics advanced
Andrei Alexandrescus Opening Keynote from Meeting C++ 2018
The next big Thing
by Andrei Alexandrescu
Helmut Zeisel said on Jan 14, 2019 02:23 AM:
template <class K, class V, std::size_t maxLength>
struct RobinHashTable
{
using CellIdx = typename uint_t<(maxLength < 0xFFFE)>::type;
alignas(8) KV_struct<K,V, (sizeof(K) % 8 < 7)> KV;
};
Add a Comment
Comments are closed.