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
collect into _ any
This is ok:
parse "a11b22" [collect any [keep skip keep 2 skip]] == [#"a" "11" #"b" "22"]
But when collecting into an existing block, that it is not:
>> o: copy [] parse "a11b22" [collect into o any [keep skip keep 2 skip]] :o == [#"a" #"b" "22"] ;= missing value!
Without the any it is ok:
any
>> o: copy [] parse "a11b22" [collect into o [keep skip keep 2 skip]] :o == [#"a" "11"]
This is also not correct:
>> o: copy [] parse "a11b22" [some [collect into o [keep skip keep 2 skip]]] :o == [#"b" "22" "11" #"a" "11"] ;== should be [#"b" "22" #"a" "11"]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is ok:
But when collecting into an existing block, that it is not:
Without the
any
it is ok:This is also not correct:
The text was updated successfully, but these errors were encountered: