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

Method eq

rust/src/function.rs:2472–2479  ·  view source on GitHub ↗
(&self, other: &Self)

Source from the content-addressed store, hash-verified

2470
2471impl PartialEq for Function {
2472 fn eq(&self, other: &Self) -> bool {
2473 if self.handle == other.handle {
2474 return true;
2475 }
2476 self.start() == other.start()
2477 && self.arch() == other.arch()
2478 && self.platform() == other.platform()
2479 }
2480}
2481
2482#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]

Callers

nothing calls this directly

Calls 3

startMethod · 0.45
archMethod · 0.45
platformMethod · 0.45

Tested by

no test coverage detected