Method: FFI::Type::Mapped#type
- Defined in:
- ext/ffi_c/MappedType.c
#native_type ⇒ Type
Get native type of mapped type.
145 146 147 148 149 150 151 152 |
# File 'ext/ffi_c/MappedType.c', line 145
static VALUE
mapped_native_type(VALUE self)
{
MappedType*m = NULL;
TypedData_Get_Struct(self, MappedType, &mapped_type_data_type, m);
return m->rbType;
}
|