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
clojure.core
In Datomic:
(q '[:where [(ground {}) ?m] [(assoc ?m :x 5) ?m2] :find ?m2 .])
returns {:x 5}. But it fails in datascript with clojure.lang.ExceptionInfo: Unknown function 'assoc in [(assoc ?m :x 5) ?m2]
{:x 5}
clojure.lang.ExceptionInfo: Unknown function 'assoc in [(assoc ?m :x 5) ?m2]
Should we allow all functions in clojure.core (except eval) in datascript as well?
eval
The text was updated successfully, but these errors were encountered:
I think you can call any function by fully qualifying its name (in Clojure). We might also check clojure.core by default, I guess
Sorry, something went wrong.
Ah thanks didn't know. If we did we wouldn't need to list them explicitly here: https://github.com/tonsky/datascript/blob/master/src/datascript/built_ins.cljc#L80
Those are for ClojureScript, since it doesn’t have runtime resolve
No branches or pull requests
In Datomic:
returns
{:x 5}
. But it fails in datascript withclojure.lang.ExceptionInfo: Unknown function 'assoc in [(assoc ?m :x 5) ?m2]
Should we allow all functions in
clojure.core
(excepteval
) in datascript as well?The text was updated successfully, but these errors were encountered: