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
The alternative operator (|| op1 op2 ...) does not permit nesting with other operators.
(|| op1 op2 ...)
For example, given two rules say-bye and say-hello, the following is a valid operation in GrapeVine that runs as wanted:
say-bye
say-hello
(-> (newgrape) (|| say-bye say-hello))
This returns a GRAPE with two graphs, as wanted.
However, nesting a looping operator in one of the branches of the alternative operator results in an error:
(-> (newgrape) (|| (->n* 3 say-bye) say-hello))
With the error message:
Exception thrown: java.lang.IllegalArgumentException (Don't know how to create ISeq from: java.lang.Long)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The alternative operator
(|| op1 op2 ...)
does not permit nesting with other operators.For example, given two rules
say-bye
andsay-hello
, the following is a valid operation in GrapeVine that runs as wanted:This returns a GRAPE with two graphs, as wanted.
However, nesting a looping operator in one of the branches of the alternative operator results in an error:
With the error message:
The text was updated successfully, but these errors were encountered: