R_FortranMethodDef

Type Alias R_FortranMethodDef 

Source
pub type R_FortranMethodDef = R_CMethodDef;
Expand description

These are very similar to those in Rdynpriv.h, but we maintain them separately to give us more freedom to do some computations on the internal versions that are derived from these definitions.

Aliased Type§

#[repr(C)]
pub struct R_FortranMethodDef { pub name: *const u8, pub fun: Option<unsafe extern "C" fn() -> *mut c_void>, pub numArgs: i32, pub types: *mut u32, }

Fields§

§name: *const u8§fun: Option<unsafe extern "C" fn() -> *mut c_void>§numArgs: i32§types: *mut u32