arrayLengths property

List<int?> arrayLengths
final

If the composite type is wrapped in arrays, contains the length of these arrays. For instance, given a struct S, the type S[3][][4] would be represented with a CompositeFunctionParameter that has the components of S and arrayLengths of [3, null, 4].

Implementation

final List<int?> arrayLengths;