Copies a human-readable name for a PK_* kind out (for error messages and callers that
dispatch on kindof).
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer, | intent(in) | :: | kind |
a PK_* discriminator. |
||
| character(len=:), | intent(out), | allocatable | :: | name |
the kind's name. |
subroutine parquet_kind_name(kind, name) integer, intent(in) :: kind !! a PK_* discriminator. character(len=:), allocatable, intent(out) :: name !! the kind's name. name = trim(kind_text(kind)) end subroutine parquet_kind_name