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

Method fmt

src/analysis/numerical/interval.rs:24–31  ·  view source on GitHub ↗
(&self, f: &mut fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

22
23impl fmt::Debug for Bound {
24 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
25 let value = match self {
26 INF => String::from("∞"),
27 NINF => String::from("-∞"),
28 Int(n) => n.to_string(),
29 };
30 write!(f, "{}", value)
31 }
32}
33
34impl Ord for Bound {

Callers

nothing calls this directly

Calls 1

is_bottomMethod · 0.45

Tested by

no test coverage detected