C exception handling
shape
inline
keyword in C++ is used to suggest to the compiler that it should attempt to generate inline code for a function call, instead of the normal function call mechanism (i.e., jumping to the function's code location). This can improve performance by avoiding the overhead associated with function calls, especially for small functions that are called frequently.