You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it works well.
(let [q '[{:a !a} ...]
f (i/rewriter
q ['!a '...])]
(f [{:a 1} {:a 2}]))
=> [1 2]
but this example throw exception, the only different is line 3
(let [q '[{:a !a} ...]
f (i/rewriter
q [{:c '!a} '...])]
(f [{:a 1} {:a 2}]))
Execution error (ArityException) at meander.pattern-factory.epsilon.Concat/concat-yield (epsilon.cljc:826).
Wrong number of args (1) passed to: meander.pattern-factory.epsilon/pred/pred-make-query--23521/pred-query--23522
Thanks
The text was updated successfully, but these errors were encountered:
it works well.
(let [q '[{:a !a} ...]
f (i/rewriter
q ['!a '...])]
(f [{:a 1} {:a 2}]))
=> [1 2]
but this example throw exception, the only different is line 3
(let [q '[{:a !a} ...]
f (i/rewriter
q [{:c '!a} '...])]
(f [{:a 1} {:a 2}]))
Execution error (ArityException) at meander.pattern-factory.epsilon.Concat/concat-yield (epsilon.cljc:826).
Wrong number of args (1) passed to: meander.pattern-factory.epsilon/pred/pred-make-query--23521/pred-query--23522
Thanks
The text was updated successfully, but these errors were encountered: