Node_GetId property
Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtNode> node, Pointer<Size> node_id)> >
Node_GetId
getter/setter pair
\brief Returns a node's identifier.
The node's identifier is only unique in the node's parent graph. Different nested subgraphs (e.g., subgraphs contained by If and Loop nodes) may reuse identifiers.
\paramin node The OrtNode instance.
\paramout node_id Output parameter set to the node's identifier.
\snippet{doc} snippets.dox OrtStatus Return Value
\since Version 1.23.
Implementation
external ffi.Pointer<
ffi.NativeFunction<
OrtStatusPtr Function(
ffi.Pointer<OrtNode> node,
ffi.Pointer<ffi.Size> node_id,
)
>
>
Node_GetId;