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
We can currently inline the plus1 function in
plus1
fun plus3 x = let fun plus1 x = x + 1 in (plus1 x) + 2 end
but not when plus1 is declared earlier in the same session:
fun plus1 x = x + 1; fun plus3 x = (plus1 x) + 2;
This limitation makes the interactive experience inferior. It also prevents us from executing Datalog-style queries with boolean functions such as
fun worksFor (empno, deptno) = {empno, deptno} elem emps
The text was updated successfully, but these errors were encountered:
Start [MOREL-223] Inline functions that are not in the same compile unit
42aa283
Fixes hydromatic#223
fe567c1
No branches or pull requests
We can currently inline the
plus1
function inbut not when
plus1
is declared earlier in the same session:This limitation makes the interactive experience inferior. It also prevents us from executing Datalog-style queries with boolean functions such as
The text was updated successfully, but these errors were encountered: