0
What is mean inline function
2 ответов
+ 1
Inline functions are functions that are put in the code a bit differently. Usually the code for a function is put separate from the the code that is calling it. The code of a inline function is inserted at the place where it's called.
This is supposed to be faster as no call and return statements have to be executed. Still, the additional code might lead to longer loading time.
0
The compiler replace the function call with the corresponding function code