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
I would like to be able to use so-called record punning found in Successor ML, OCaml, ECMAScript (Shorthand property names), ..., etc. also in SATySFi.
With this feature, we can construct a record
let f x y = (| x; y |)
instead of
let f x y = (| x = x; y = y |)
This can also be applied to record patterns (#358), so we can write
let f (| x; y |) = (x, y)
let f (| x = x; y = y |) = (x, y)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I would like to be able to use so-called record punning found in Successor ML, OCaml, ECMAScript (Shorthand property names), ..., etc. also in SATySFi.
With this feature, we can construct a record
instead of
This can also be applied to record patterns (#358), so we can write
instead of
The text was updated successfully, but these errors were encountered: