MCPcopy Create free account
hub / github.com/SeaQL/FireDBG.for.Rust / bool

Function bool

debugger/testcases/return_value.rs:15–15  ·  view source on GitHub ↗
(v: bool)

Source from the content-addressed store, hash-verified

13fn f32(v: f32) -> f32 { println!("\nf32\t{v}"); v }
14fn f64(v: f64) -> f64 { println!("\nf64\t{v}"); v }
15fn bool(v: bool) -> bool { println!("\nbool\t{v}"); v }
16fn static_str(v: &'static str) -> &'static str { println!("\n&str\t{v}"); "hello" }
17fn result_ok(v: i32) -> Result<i64, i64> { println!("\nok\t{v}"); Ok(0x1234) }
18fn result_err(v: i32) -> Result<i32, i32> { println!("\nerr\t{v}"); Err(0x5678) }

Callers 2

prim_vMethod · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected