MCPcopy Create free account
hub / github.com/Rust-API/Rust-API-Bypass-Checker / eq

Method eq

src/analysis/memory/symbolic_value.rs:46–52  ·  view source on GitHub ↗
(&self, other: &Self)

Source from the content-addressed store, hash-verified

44
45impl PartialEq for SymbolicValue {
46 fn eq(&self, other: &Self) -> bool {
47 match (&self.expression, &other.expression) {
48 // Assume widened values are equal
49 (Expression::Widen { path: p1, .. }, Expression::Widen { path: p2, .. }) => p1.eq(p2),
50 (e1, e2) => e1.eq(e2),
51 }
52 }
53}
54
55/// An abstract domain element that all represent the impossible concrete value.

Callers 4

impliesMethod · 0.45
implies_notMethod · 0.45
orMethod · 0.45
refine_withMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected