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
Fable does not provide a replacement for DivRem. It should be pretty straightforward:
type Math = // to support both ways to invoke it static member DivRem (a,b,result:byref<int>) = result <- a%b a/b static member DivRem (a,b) : int = a/b,a%b
For the record, the BCL also provides int64 overloads.
The text was updated successfully, but these errors were encountered:
Fix #2614 #2615
ce71b8a
1527047
a69e20d
No branches or pull requests
Description
Fable does not provide a replacement for DivRem. It should be pretty straightforward:
For the record, the BCL also provides int64 overloads.
Related information
The text was updated successfully, but these errors were encountered: