We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9421011 commit 3245b45Copy full SHA for 3245b45
hugr-core/src/types/signature.rs
@@ -37,14 +37,14 @@ pub struct FuncTypeBase<ROWVARS: MaybeRV> {
37
38
/// The concept of "signature" in the spec - the edges required to/from a node
39
/// or within a [FuncDefn], also the target (value) of a call (static).
40
-///
+///
41
/// [FuncDefn]: crate::ops::FuncDefn
42
pub type FunctionType = FuncTypeBase<NoRV>;
43
44
/// A function that may contain [RowVariable]s and thus has potentially-unknown arity;
45
/// used for [OpDef]'s and passable as a value round a Hugr (see [Type::new_function])
46
/// but not a valid node type.
47
48
/// [OpDef]: crate::extension::OpDef
49
pub type FunctionTypeRV = FuncTypeBase<RowVariable>;
50
0 commit comments