Method: VIPS::Interpolator#nickname
- Defined in:
- ext/interpolator.c
#nickname ⇒ String
Retrieve the internally used nickname of the interpolator.
60 61 62 63 64 65 66 |
# File 'ext/interpolator.c', line 60 static VALUE interp_nickname(VALUE obj) { VipsObject *v_obj; Data_Get_Struct(obj, VipsObject, v_obj); return rb_str_new2(v_obj->nickname); } |