Overloaded interface for optional value retrieval, supported types are: - integer(int32), integer(int64), real(sp), real(dp), character(len=*), logical
Handle optional integer(int32) value
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer(kind=int32), | intent(in), | optional | :: | input_value | ||
| integer(kind=int32), | intent(in) | :: | default_value |
Handle optional integer(int64) value
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer(kind=int64), | intent(in), | optional | :: | input_value | ||
| integer(kind=int64), | intent(in) | :: | default_value |
Handle optional real(sp) value
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=sp), | intent(in), | optional | :: | input_value | ||
| real(kind=sp), | intent(in) | :: | default_value |
Handle optional real(dp) value
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=dp), | intent(in), | optional | :: | input_value | ||
| real(kind=dp), | intent(in) | :: | default_value |
Handle optional character(len=*) value
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in), | optional | :: | input_value | ||
| character(len=*), | intent(in) | :: | default_value |
Handle optional logical value
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| logical, | intent(in), | optional | :: | input_value | ||
| logical, | intent(in) | :: | default_value |