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
Possibly unless we drop "Graph" types from core, which we might do according to outcome of #285.
Again according to #285, this might be as simple as
struct Graph(Hugr); impl Graph { fn new(h: Hugr) -> Self { assert!(h.is_dfg()); Self(h) } }
(if monomorphic) whereas if polymorphic it might be a bit more complex
The text was updated successfully, but these errors were encountered:
add HUGR payload to PrimValue::Function (#431)
5ae71ed
add `get_function_type` method to HugrView to report the function type of the root if valid. Closes #374
ss2165
Successfully merging a pull request may close this issue.
Possibly unless we drop "Graph" types from core, which we might do according to outcome of #285.
Again according to #285, this might be as simple as
(if monomorphic) whereas if polymorphic it might be a bit more complex
The text was updated successfully, but these errors were encountered: