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
Given
(speced/defn inline-function [^::speced/closed-keys {:keys [foo bar baz] :as x}] (when (< 0 x 100) (-> x (* x) str)))
, ^::speced/closed-keys would ensure that the map x only has the destructured keys, without extra ones.
^::speced/closed-keys
x
The directive should be non-recursive, and if possible the :as destructuring should be used, for clearer error reports (vs. gensym)
:as
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given
,
^::speced/closed-keys
would ensure that the mapx
only has the destructured keys, without extra ones.The directive should be non-recursive, and if possible the
:as
destructuring should be used, for clearer error reports (vs. gensym)The text was updated successfully, but these errors were encountered: