MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / add_outgoing_edge

Method add_outgoing_edge

rust/src/flowgraph.rs:251–260  ·  view source on GitHub ↗
(
        &self,
        type_: BranchType,
        target: &FlowGraphNode,
        edge_style: EdgeStyle,
    )

Source from the content-addressed store, hash-verified

249 // TODO: Add getters and setters for edges
250
251 pub fn add_outgoing_edge(
252 &self,
253 type_: BranchType,
254 target: &FlowGraphNode,
255 edge_style: EdgeStyle,
256 ) {
257 unsafe {
258 BNAddFlowGraphNodeOutgoingEdge(self.handle, type_, target.handle, edge_style.into())
259 }
260 }
261}
262
263unsafe impl RefCountable for FlowGraphNode {

Callers 1

test_graphFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_graphFunction · 0.36