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