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
keyword
Clojure and CLJS do their own thing but jank does a third thing in these cases.
;; jank clojure.core=> (keyword nil) :nil clojure.core=> (keyword nil "abc") :nil/abc clojure.core=> (keyword "abc" :abc) :abc/:abc clojure.core=> (keyword :asdf :abc) ::asdf/:abc ;; via clojure-test FAIL in (nil) (nil:nil) expected: (nil? (keyword nil)) actual: (not (nil? :nil)) FAIL in (nil) (nil:nil) expected: (= :abc (keyword nil "abc")) actual: (not (= :abc :nil/abc))
The text was updated successfully, but these errors were encountered:
(keyword nil)
nil
:nil
This is a side effect of #241, I believe.
Sorry, something went wrong.
No branches or pull requests
Clojure and CLJS do their own thing but jank does a third thing in these cases.
The text was updated successfully, but these errors were encountered: