function

A function call expression consisting of a referential identifier followed by a parenthesized argument list. Resolves to a named function definition in the current or an included library.

Examples

Built-in function call

AgeInYears()

User-defined function call

"CalculateBMI"(weight, height)

Library-qualified function call

FHIRHelpers.ToInterval(Encounter.period)
Railroad Diagram
100%
referentialIdentifier ( paramList )

scroll to zoom · drag to pan · click green rules or blue tokens to navigate

EBNF

function
  : referentialIdentifier '(' paramList? ')'
  ;

Used In