Tags: #book #free #practical #metaprogramming #cpp11 #cpp14
http://www.oreilly.com/programming/free/practical-c-plus-plus-metaprogramming.csp
http://www.oreilly.com/programming/free/practical-c-plus-plus-metaprogramming.csp
O’Reilly Online Learning
Practical C++ Metaprogramming
To say that C++ programmers embrace metaprogramming is a real stretch. Outright rejection is probably more accurate. And yet, C++ template metaprogramming is ideal for performing automatic compile-time optimization. With … - Selection from Practical C++…
Tags: #quantifiers #metaprogramming #concepts
https://ngathanasiou.wordpress.com/2016/12/18/quantifiers-metaprogramming-and-concepts/
https://ngathanasiou.wordpress.com/2016/12/18/quantifiers-metaprogramming-and-concepts/
CODEine
Quantifiers, metaprogramming and concepts
1. Intro Quantification expresses the extent to which a predicate is true over a set of elements. Two forms are the most common: Universal $latex \forall$ Existential $latex \exists$ To define the…
Tags: #metaprogramming #design #patterns
http://odinthenerd.blogspot.it/2017/03/tradeoffs-of-tmp-mpl-design.html
http://odinthenerd.blogspot.it/2017/03/tradeoffs-of-tmp-mpl-design.html
odinthenerd.blogspot.co.uk
Tradeoffs of TMP MPL design
I would like to take a break from my design patterns series to talk about some of the tradeoffs when designing a template metaprogramming li...