string_length_kind¶
How the length of a string is determined.
Declaración¶
Sintaxis¶
string_length_kind
= AssumedLength
| DeferredLength
| ExpressionLength
| ImplicitLength
Values¶
Value |
Meaning |
|---|---|
|
|
|
|
|
the length is the expression in the |
|
the length follows from the operation that produced the value rather than from a declaration. It is what the result of a StringPhysicalCast must use. |
Valores devueltos¶
None. An enumeration value is not evaluated.
Descripción¶
len and len_kind go together: ExpressionLength requires a len, and the
other three leave it nil.