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
use curry is boxing,
boxing f : (A,B) -> C into f_ : (A) -> (B) -> C
f : (A,B) -> C
f_ : (A) -> (B) -> C
moonbit doesn't support implicit curry, we really need C++ pack or Rust macro to invoke function directly
another way to support muti argument is use f : ((A,B)) -> C, I don't think will be more efficient than curry version
f : ((A,B)) -> C
curry
The text was updated successfully, but these errors were encountered:
No branches or pull requests
use curry is boxing,
boxing
f : (A,B) -> C
intof_ : (A) -> (B) -> C
moonbit doesn't support implicit curry, we really need C++ pack or Rust macro to invoke function directly
another way to support muti argument is use
f : ((A,B)) -> C
, I don't think will be more efficient thancurry
versionThe text was updated successfully, but these errors were encountered: