inline
Go Up to Keywords, Alphabetical Listing Index
Category
C++-Specific Keywords
Syntax
inline <datatype> <class>_<function> (<parameters>) { <statements>; }
Description
Use the inline keyword to declare or define C++ inline functions.
Inline functions are best reserved for small, frequently used functions.