+ 4
Can inline function be recursive?
Can we call the same inline function inside inline function's body?
2 Answers
+ 2
You can mark it inline but the compiler isn't going to inline recursive calls, there's no way for it to predict how many recursive calls it will need to inline
0
If it's named probably otherwise no