Class: BoostDistributions::GC_VALUE
- Inherits:
-
Object
- Object
- BoostDistributions::GC_VALUE
- Defined in:
- ext/boost_distributions/BoostDistributions/BoostDistributions_wrap.cxx
Instance Method Summary collapse
-
#inspect(*args) ⇒ Object
call-seq: inspect -> VALUE.
-
#to_s(*args) ⇒ Object
call-seq: to_s -> VALUE.
Instance Method Details
#inspect(*args) ⇒ Object
call-seq:
inspect -> VALUE
Inspect class and its contents.
4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 |
# File 'ext/boost_distributions/BoostDistributions/BoostDistributions_wrap.cxx', line 4190
SWIGINTERN VALUE
_wrap_GC_VALUE_inspect(int argc, VALUE *argv, VALUE self) {
swig::GC_VALUE *arg1 = (swig::GC_VALUE *) 0 ;
swig::GC_VALUE r1 ;
VALUE result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
r1 = self; arg1 = &r1;
result = (VALUE)((swig::GC_VALUE const *)arg1)->inspect();
vresult = result;
return vresult;
fail:
return Qnil;
}
|
#to_s(*args) ⇒ Object
call-seq:
to_s -> VALUE
Convert class to a String representation.
4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 |
# File 'ext/boost_distributions/BoostDistributions/BoostDistributions_wrap.cxx', line 4217
SWIGINTERN VALUE
_wrap_GC_VALUE_to_s(int argc, VALUE *argv, VALUE self) {
swig::GC_VALUE *arg1 = (swig::GC_VALUE *) 0 ;
swig::GC_VALUE r1 ;
VALUE result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
r1 = self; arg1 = &r1;
result = (VALUE)((swig::GC_VALUE const *)arg1)->to_s();
vresult = result;
return vresult;
fail:
return Qnil;
}
|