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
Multiple arguments aren't currently supported, e.g. functions like
(fn [x] (- (- (exp x) 1.5) (atan x)))
would be much more idiomatic if it could be written,
(fn [x] (- (exp x) 1.5 (atan x)))
This should work with lift-real-n->real and lift-real-n+1->real but with earlier testing there seemed to be an error here.
lift-real-n->real
lift-real-n+1->real
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Multiple arguments aren't currently supported, e.g. functions like
would be much more idiomatic if it could be written,
This should work with
lift-real-n->real
andlift-real-n+1->real
but with earlier testing there seemed to be an error here.The text was updated successfully, but these errors were encountered: