Quotes
- "A function declaration with an inline specifier declares an inline function. The inline specifier indicates to the implementation that inline substitution of the function body at the point of call is to be preferred to the usual function call mechanism. An implementation is not required to perform this inline substitution at the point of call; however, even if this inline substitution is omitted, the other rules for inline functions defined by 7.1.2 shall still be respected."
- — ISO/IEC 14882:2011, the current C++ standard, section 7.1.2
- "A function declared with an inline function specifier is an inline function. Making a function an inline function suggests that calls to the function be as fast as possible. The extent to which such suggestions are effective is implementation-defined (footnote: For example, an implementation might never perform inline substitution, or might only perform inline substitutions to calls in the scope of an inline declaration.)
- " An inline definition does not provide an external definition for the function, and does not forbid an external definition in another translation unit. An inline definition provides an alternative to an external definition, which a translator may use to implement any call to the function in the same translation unit. It is unspecified whether a call to the function uses the inline definition or the external definition."
- — ISO 9899:1999(E), the C99 standard, section 6.7.4
Read more about this topic: Inline Function
Famous quotes containing the word quotes:
“A great man quotes bravely, and will not draw on his invention when his memory serves him with a word as good. What he quotes, he fills with his own voice and humour, and the whole cyclopedia of his table-talk is presently believed to be his own.”
—Ralph Waldo Emerson (18031882)
“I quote another mans saying; unluckily, that other withdraws himself in the same way, and quotes me.”
—Ralph Waldo Emerson (18031882)
“Man is timid and apologetic; he is no longer upright; he dares not say I think, I am, but quotes some saint or sage.”
—Ralph Waldo Emerson (18031882)
Related Subjects
Related Phrases
Related Words