編譯指示 Inline 指定在程式碼中呼叫時,應將子程式內聯擴充套件。
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.
function
return
is
begin
end
pragma