Typed form of %reserve, generic over an int32 or int64 index/count argument.
int32 specific of reserve; see the reserve generic.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(parquet_string_column), | intent(inout) | :: | self |
the column. |
||
| integer(kind=int32), | intent(in) | :: | n_rows |
required row capacity. |
||
| integer(kind=int32), | intent(in) | :: | n_characters |
required character capacity (bytes). |
int64 specific of reserve: grows capacity to hold at least n_rows/n_characters
(never shrinks; pass 0 for "no requirement on this dimension").
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(parquet_string_column), | intent(inout) | :: | self |
the column. |
||
| integer(kind=int64), | intent(in) | :: | n_rows |
required row capacity. |
||
| integer(kind=int64), | intent(in) | :: | n_characters |
required character capacity (bytes). |