@@ -91,30 +91,30 @@ module stdlib_string_type
91
91
module procedure :: repeat_string
92
92
end interface repeat
93
93
94
- ! >
95
- ! >
94
+ ! > Convert the character sequence hold by the input string to lower case
96
95
! >
96
+ ! > Elemental or pure ???? Does not return anything
97
97
interface to_lower
98
98
module procedure :: to_lower_string
99
99
end interface to_lower
100
100
101
+ ! > Convert the character sequence hold by the input string to upper case
101
102
! >
102
- ! >
103
- ! >
103
+ ! > Elemental or pure ???? Does not return anything
104
104
interface to_upper
105
105
module procedure :: to_upper_string
106
106
end interface to_upper
107
107
108
+ ! > Convert the character sequence hold by the input string to title case
108
109
! >
109
- ! >
110
- ! >
110
+ ! > Elemental or pure ???? Does not return anything
111
111
interface to_title
112
112
module procedure :: to_title_string
113
113
end interface to_title
114
114
115
- ! >
116
- ! >
117
- ! >
115
+ ! > Reverse the character sequence hold by the input string
116
+ ! >
117
+ ! > Elemental or pure ???? Does not return anything
118
118
interface reverse
119
119
module procedure :: reverse_string
120
120
end interface reverse
@@ -477,6 +477,7 @@ elemental function repeat_string(string, ncopies) result(repeated_string)
477
477
end function repeat_string
478
478
479
479
480
+ ! > Convert the character sequence hold by the input string to lower case
480
481
elemental function to_lower_string (string ) result(lowered_string)
481
482
type (string_type), intent (in ) :: string
482
483
type (string_type) :: lowered_string
@@ -486,6 +487,7 @@ elemental function to_lower_string(string) result(lowered_string)
486
487
end function to_lower_string
487
488
488
489
490
+ ! > Convert the character sequence hold by the input string to upper case
489
491
elemental function to_upper_string (string ) result(uppered_string)
490
492
type (string_type), intent (in ) :: string
491
493
type (string_type) :: uppered_string
@@ -495,6 +497,7 @@ elemental function to_upper_string(string) result(uppered_string)
495
497
end function to_upper_string
496
498
497
499
500
+ ! > Convert the character sequence hold by the input string to title case
498
501
elemental function to_title_string (string ) result(titled_string)
499
502
type (string_type), intent (in ) :: string
500
503
type (string_type) :: titled_string
@@ -504,6 +507,7 @@ elemental function to_title_string(string) result(titled_string)
504
507
end function to_title_string
505
508
506
509
510
+ ! > Reverse the character sequence hold by the input string
507
511
elemental function reverse_string (string ) result(reversed_string)
508
512
type (string_type), intent (in ) :: string
509
513
type (string_type) :: reversed_string
0 commit comments