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

Method hash

rust/src/function.rs:2463–2468  ·  view source on GitHub ↗
(&self, state: &mut H)

Source from the content-addressed store, hash-verified

2461
2462impl Hash for Function {
2463 fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
2464 let start_address = self.start();
2465 let architecture = self.arch();
2466 let platform = self.platform();
2467 (start_address, architecture, platform).hash(state)
2468 }
2469}
2470
2471impl PartialEq for Function {

Callers

nothing calls this directly

Calls 3

startMethod · 0.45
archMethod · 0.45
platformMethod · 0.45

Tested by

no test coverage detected