/* Checks if the given object is a Dvector. Mainly here for testing purposes, as it corresponds to the internal +is_a_dvector+. */ VALUE dvector_is_a_dvector(VALUE self, VALUE obj) { if(Is_Dvector(obj)) return Qtrue; return Qfalse; }