Concat constructor

Concat(
  1. List strings
)

Creates $concat operator expression

Concatenates strings and returns the concatenated string.

The strings is a List of valid expression as long as they resolve to strings.

Implementation

Concat(List strings) : super('concat', AEList(strings));