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
;; this works (sequence (comp (x/by-key :foo (x/into [])) (x/sort-by first)) [{:foo 2} {:foo 1} {:foo 1}]) => ([1 [{:foo 1} {:foo 1}]] [2 [{:foo 2}]]) ;; this breaks (sequence (comp (x/by-key :foo (x/into [])) (x/multiplex [(x/sort-by first)])) [{:foo 2} {:foo 1} {:foo 1}]) Execution error (ArityException) at net.cgrand.xforms/multiplex$fn$reify$fn (xforms.cljc:710). Wrong number of args (3) passed to: net.cgrand.xforms/sort/fn--25064/fn--25065
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: