0xCyberY / Inline-Functions

.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inline-Functions

Inline function is a function that is expanded in line when it is called.

  • When the inline function is called whole code of the inline function gets inserted or substituted at the point of inline function call.
  • This substitution is performed by the C++ compiler at compile time.
  • Inline function may increase efficiency if it is small.

About

.


Languages

Language:C++ 100.0%