3460:421 OOP Callbacks: Function Pointers

123456789101112131415
Across
  1. 3. We ____ the name of a function to a parameter for a function pointer
  2. 6. Lamba functions may be any section of ____-_____ code
  3. 7. Free functions used as callbacks are function _____
  4. 9. So far, we can generalize a ____
  5. 10. A bit of computation that a function/method can call when appropriate
  6. 11. A callback that can only access parameters
  7. 15. Each free function maps to a _____-_____ of where the code is
Down
  1. 1. Generalize a value by using a _____
  2. 2. Also known as an anonymous function
  3. 4. Need to generalize _____
  4. 5. A callback that can access parameters and fields
  5. 8. Generalize a range by using _____
  6. 12. The ____ of a free function in a program is that memory address
  7. 13. So far, we can generalize a ____
  8. 14. Methods used as callbacks are pointers to _____ functions