j
k
j a
j l
Eric Niebler:
Can you write what the identity function object would look like in C++0x?
struct identity { template<class A> A operator()( A && a ) const { return std::forward<A>( a ); } }; I guess.
Back to the thread
Back to the list