let's say i have 3 functions inside a class :
class Foo {
inline void FooInline() { /* bla bla */ }
static void fooStatic();
void foo();
};
as i understand the last two have external linkage while the first have internal.
i want to know which function will be the fastest to call to , and what's the tradeoff.
thanks