CPSC 421 OOP Lambda Functions

123456789101112131415161718
Across
  1. 4. The capture and _____ _____ are very important
  2. 5. The {} in the lambda expression [](int n1, int n2)->bool {}
  3. 8. For a function pointer, the function must be ______ before it is passed
  4. 9. Inline lambda functions create several _____ issues
  5. 11. A lambda function is also known as an _____ function
  6. 12. The lambda function: [](char& c) { c = std::toupper(c); } uses an ____ parameter
  7. 14. The () in the lambda expression [](int n1, int n2)->bool {}
  8. 16. The [] in the lambda expression [](int n1, int n2)->bool {}
  9. 17. The lambda function: [](int n1, int n2)->bool { return n1 < n2; } is an example of a ____ comparison
  10. 18. The lambda function: [](const void* e1, const void* e2)->int { /* ... */ } is an example of an ____ comparison
Down
  1. 1. Naming things is good when we have a good name, but a _____ when we don't
  2. 2. Lambda functions with an empty capture, i.e., "[]", can be passed to _____ _______
  3. 3. A C function for sorting that uses a function pointer for comparison
  4. 6. Function often cannot be _____ close to where they are used
  5. 7. Originated from Church's lambda _______
  6. 10. The -> in the lambda expression [](int n1, int n2)->bool {}
  7. 13. Lambda functions are very efficient and very _____
  8. 15. A function pointer is slightly _____ than a direct call
  9. 18. The lambda function: [](char c) { std::cout << c; } uses an __ parameter