-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should reverse be in stdlib_string? #399
Comments
There is an issue with cyclic dependencies here. Moving reverse from |
Hello, I would like to work on this issue, if available. Thanks! |
Feel free to submit a patch for this issue. If you have any questions regarding stdlib and the workflow, do not hesitate to ask, we are always happy to help. |
I feel it is implemented here: https://github.com/fortran-lang/stdlib/blob/master/src/stdlib_ascii.fypp#L336-L346, is there anything else we need for this issue? Edit: Ahh I see, it is aimed to migrate |
I'd like to work on this issue if it is still available. Thanks. |
@Merothiya Thank you for your interest. AFAIK this issue is still available. Some work have been done (e.g., #745 ), but not finished. |
#310 added the
reverse
function to thestdlib_ascii
module. Since the behavior of this function does not depend on the character set, thestdlib_string
module would be a better home for it.On the other hand the overloaded functions
to_lower
,to_upper
, andto_title
for thestring_type
(currently instdlib_string_type
) do implement behavior depending on the character set, and should be placed instdlib_ascii
.cc @awvwgk
The text was updated successfully, but these errors were encountered: