Convert the character sequence hold by the input string to lower case
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | string |
elemental function to_lower_string(string) result(lowercase_string) type(string_type), intent(in) :: string type(string_type) :: lowercase_string lowercase_string%raw = to_lower_(maybe(string)) end function to_lower_string