Parametric Accessor ComponentΒΆ

The parametric accessor component is the part of an accessor that is used to specify the value arguments of the parametric component of an identifier of a member.

The parametric accessor component is represented by a listing of zero or more values, each separated by a comma , and together surrounded by parentheses ( ). For instance, the following snippet:

{
    id(a: '', b: '', c: ''): '' = a b c
}
.id('to', 'get', 'her')

repersents the parametric access of id(a: '', b: '', c: '') with a = 'to', b = 'get' and c = 'her' in a structural value. This access evaluates to the 'together' string.