1 Answers
- Inline functions will be embedded in place of function calls by the compiler (Replace function call by definition)
- It’s a request to the compiler, the compiler may ignore the inline request
- The compiler may apply inline for small functions implicitly
- Cons and Pros
- Faster Execution (Pros)
- Increased Memory Footprint(Cons)