Function call |
LRM §7.3.3. |
A function call calls a function which returns a value.
function_name [ ( [ parameter => ] expression, ... ) ]
The function parameters can be listed in both positional association and named association. Both methods can be mixed in one function call (although positional association must come before named association).
Named associated is advised to improve readability and reduce the risk of making mistakes.
A:= to_std_logic_vector (J, 4); B:= "+"(L => M, R => N); -- equivalent to B:= M + N