Silicon Valley Code Camp : October 11th and 12th 2014

Arthur O'Dwyer

Nominum
About Arthur
Arthur O'Dwyer worked for many years at Green Hills Software, making the world's most optimizing C and C++ compilers. These days he makes DNS servers at Nominum, speaks at C++ conferences, and is writing a book about the C++ Standard Library.
{speaker.firstName} {speaker.lastName}

Speaking Sessions

  • C++11 in the Wild: Techniques from a Real Codebase

    2:45 PM Sunday   Room: 5001
    Three techniques from a production C++11 codebase. The Auto() macro allows writing arbitrary end-of-scope cleanup code in-line, with zero boilerplate and zero runtime overhead. make_iterable() (alias boost::iterator_range) takes a pair of iterators and turns them back into a "container" usable in C++11's ranged for loop. std::spaceship (not actually part of the standard) implements a Perl-style <=> operator in a maximally efficient way for C++11 tuples.