3460:421 OOP C++ Template Extension Points

123456789
Across
  1. 4. C++ templates as extension points allow the use of _____ in lambda functions
  2. 7. In the Template Function Extension, the name of the type for the compare function is _____
  3. 8. Lambda functions passed to std::function parameters are very _____
  4. 9. Code is (potentially) _____
Down
  1. 1. With C++ templates as extension points, we get a lot of _____
  2. 2. A C++ template is how std::_____() works
  3. 3. In the Template Class Extension, we create the processor with Process<_____(compare)>
  4. 5. Using C++ Template with lambda functions is very _____
  5. 6. The compiler can _____ lambda functions in template
  6. 8. All the advantages of lambdas to std::function, without the _____ disadvantage