c++ Programming Glossary: functort
Should templated functions take lambda arguments by value or by rvalue reference? http://stackoverflow.com/questions/12548614/should-templated-functions-take-lambda-arguments-by-value-or-by-rvalue-reference taking a lambda two different ways by value template class FunctorT void foo FunctorT f stuff And by r value reference template.. different ways by value template class FunctorT void foo FunctorT f stuff And by r value reference template class FunctorT void.. FunctorT f stuff And by r value reference template class FunctorT void foo FunctorT f stuff But not by reference template class..
|