Ada Programming/Pragmas/Inline
Summary
editThe pragma Inline specifies that a subprogram should be expanded inline when called in code.
Example
editfunction
My_Functionreturn
Integeris
begin
return
1+2; -- A simple function suitable for inliningend
My_Function;pragma
inline(My_Function); ... Some_Variable := My_Function; -- Will be expanded by compiler.