We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ALL
In the current version of specter, if I transform ALL of a string I get the reversed order of characters:
specter
(specter/transform specter/ALL identity "123") ;; => (\3 \2 \1)
I find this confusing since we have:
(specter/select specter/ALL "123") ;; => [\1 \2 \3]
and:
(specter/transform specter/ALL identity (vec "123")) ;; => [\1 \2 \3]
Is there a reason for this behavior or could we change it to the more intuitive one?
The text was updated successfully, but these errors were encountered:
ran into this today
Sorry, something went wrong.
Would just need to extend all-transform protocol to strings.
first pass at fix to redplanetlabs#320
a9ba241
7a2fe14
fixed whitespace
No branches or pull requests
In the current version of
specter
, if I transformALL
of a string I get the reversed order of characters:I find this confusing since we have:
and:
Is there a reason for this behavior or could we change it to the more intuitive one?
The text was updated successfully, but these errors were encountered: