Ada Programming/Pragmas/Inline


Ada. Time-tested, safe and secure.
Ada. Time-tested, safe and secure.

Summary edit

The pragma Inline specifies that a subprogram should be expanded inline when called in code.

Example edit

function My_Function return Integer is begin
  return 1+2; -- A simple function suitable for inlining
end My_Function;
pragma inline(My_Function);
...
Some_Variable := My_Function; -- Will be expanded by compiler.

See also edit

Wikibook edit