You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the least, make Signature store an Option rather than FunctionType, so we can return a Signature for non-dataflow ops
But, there are many things called signature (FunctionType's, Signature's, etc.), which quickly confuses as to what is what; so some renaming is in order
Consider replacing NodeType::signature(&self) -> Signature with a simple getter for input_extensions (returning Option<ExtensionSet>); the rest of the info in the old signature() is available from op_signature() if required
The text was updated successfully, but these errors were encountered:
signature
(FunctionType's, Signature's, etc.), which quickly confuses as to what is what; so some renaming is in orderNodeType::signature(&self) -> Signature
with a simple getter forinput_extensions
(returningOption<ExtensionSet>
); the rest of the info in the oldsignature()
is available fromop_signature()
if requiredThe text was updated successfully, but these errors were encountered: