We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Function::has_explicitly_defined_type
1 parent 28a9d66 commit 3bb5e33Copy full SHA for 3bb5e33
rust/src/function.rs
@@ -2334,7 +2334,9 @@ impl Function {
2334
unsafe { BNSetAutoFunctionCanReturn(self.handle, &mut value_raw) }
2335
}
2336
2337
- /// Whether function has explicitly defined types
+ /// Whether the function type was defined with [`Function::apply_auto_discovered_type`].
2338
+ ///
2339
+ /// NOTE: This is different from [`Function::has_user_type`].
2340
pub fn has_explicitly_defined_type(&self) -> bool {
2341
unsafe { BNFunctionHasExplicitlyDefinedType(self.handle) }
2342
0 commit comments