↧
C++11: std::tuple
A tuple is a C++11 construction and it is built heavily on variadic templates. A tuple is a variadic class template that stores an unlimited set of values of different types, defined when instantiating...
View Articleclasseine: Introducing classeine
Hello, The last three months in my spare time I was developing a framework (called classeine) aimed to make easier to code and run server-side RESTful apps using modern C++. My first preview (actually...
View ArticleC++11: ‘decltype’
decltype is a new keyword that infers the type of a given expression. Though it can be used instead of auto; it is used mainly on return types. For example; this function: could be written using...
View Article