TECH
Home
PHP
X
X
X
C++
COUNTED METHOD
META PROGRAMMİNG
THE POLICY CLONE IDIOM
X
X
X
TECH
C++
Fun with Lambdas: C++14 Style
Fun with Lambdas: C++14 Style
7:52:00 PM
Unknown
0 Comments
A
+
a
-
I am presenting at the SF Bay Area Association of C/C++ Users (ACCU)
meetup
on Wed, Mar 12th. Topic: Fun with Lambdas: C++14 Style. Slides and the blog will be available here so stay tuned.
Twitter
Facebook
Google
Tumblr
Pinterest
Unknown
Newer Post
Home
Older Post
Subscribe to:
Post Comments (Atom)
About
Follow Us
Popular Posts
What is a "thunk"?
A "thunk" appears to be an overloaded term in computer science. Use of the word "thunk" goes back to Algol 60 implementa...
destructors and exceptions
This is a small part of the discussion going on writing exception safe code in C++ especially for large C++ programs such as ACE/TAO library...
Changing C++ function default arguments
In C++, default arguments of global scope functions can be changed easily. Typically we use a constant expression as a default argument. C...
STL short / one liners
A very nice collection of wrappers is available on Stackoverflow . 1. Copy everything in the a container to std::cout (e.g. std::set<st...
Curiously Recurring Template Pattern (CRTP)
It is a C++ idiom in which inheritance and template type parameters are cleverly integrated to generate flexible types at compile-time. In C...
(no title)
Some syntax clarification: This is a short syntax tutorial for upcoming posts. int *p; // a pointer to an integer int &p; // a refer...
(no title)
pointer cause decay, references do not. Decay means loss of type information. In C and C++, an array name 'decays' to pointer to t...
C++ Standard Library Extensions
C++0x standard will expand the C++ standard library in various ways. The C++ Standardization Committee has identified 14 new sets of library...
(no title)
Reading entire file in one go. Solution 1: std::ifstream in("circle.cc"); std::istreambuf_iterator < char > begin(in), e...
return void
I thought it would be interesting to discuss a subtle C/C++ interview question I learned recently. Question is deceptively simple: "Can...
Subscribe
Labels
"Counted Method Chaining" "Template Meta-programming"
C++
meta-programming constexpr performance
PHP
policy clone idiom "policy-based class design"
traits compile-time algorithm selection templates
Pinterest
Labels
"Counted Method Chaining" "Template Meta-programming"
C++
meta-programming constexpr performance
PHP
policy clone idiom "policy-based class design"
traits compile-time algorithm selection templates