InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between inline and infix functions? |
|
Answer» INLINE Functions Used to prevent the OBJECT allocations for the functions or lambda expressions that have been called. Infix FunctionsIt is used for calling functions WITHOUT any PARENTHESES or BRACKETS. |
|