We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a996ec5 commit 37f1d6cCopy full SHA for 37f1d6c
src/stdlib_ascii.f90
@@ -153,7 +153,7 @@ pure logical function is_lower(c)
153
character(len=1), intent(in) :: c !! The character to test.
154
integer :: ic
155
ic = iachar(c)
156
- is_lower = (ic >= iachar('a')) .and. (ic <= iachar('z'))
+ is_lower = ic >= iachar('a') .and. ic <= iachar('z')
157
end function
158
159
!> Checks whether `c` is an uppercase ASCII letter (A .. Z).
0 commit comments