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
Right now the purity check can only be done through: defn and defn!.
defn
defn!
If you define a pure or impure function by value, or reference it will lose it's purity annotation:
(def is-pure (fn [a b] (+ a b)))
This is a pure function, but not stored as is. The same goes for other means of passing by reference.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now the purity check can only be done through:
defn
anddefn!
.If you define a pure or impure function by value, or reference it will lose it's purity annotation:
This is a pure function, but not stored as is. The same goes for other means of passing by reference.
The text was updated successfully, but these errors were encountered: