Class: Mykytea::GC_VALUE
- Inherits:
-
Object
- Object
- Mykytea::GC_VALUE
- Defined in:
- ext/mykytea_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.
5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 |
# File 'ext/mykytea_wrap.cxx', line 5913
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.
5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 |
# File 'ext/mykytea_wrap.cxx', line 5940
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;
}
|