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
e.g. the following should be allowed:
(let [foo :a] (matcha/construct foo [[foo ?bar ?baz]]))
It should return :a if it exists as a resource in the database, otherwise nil.
:a
nil
However it raises a syntax error:
Syntax error macroexpanding clojure.core/let at (*cider-repl repos/muttnik:localhost:50215(clj)*:1010:45). nil - failed: simple-symbol? at: [:bindings :form :local-symbol] spec: :clojure.core.specs.alpha/local-name nil - failed: vector? at: [:bindings :form :seq-destructure] spec: :clojure.core.specs.alpha/seq-binding-form nil - failed: map? at: [:bindings :form :map-destructure] spec: :clojure.core.specs.alpha/map-bindings nil - failed: map? at: [:bindings :form :map-destructure] spec: :clojure.core.specs.alpha/map-special-binding
The text was updated successfully, but these errors were encountered:
Note a workaround for this is:
(let [foo :a] (when (matcha/ask [[foo ?bar ?baz]] matcha-db) foo)
Sorry, something went wrong.
No branches or pull requests
e.g. the following should be allowed:
It should return
:a
if it exists as a resource in the database, otherwisenil
.However it raises a syntax error:
The text was updated successfully, but these errors were encountered: