Class: Quickfix::GC_VALUE
- Inherits:
-
Object
- Object
- Quickfix::GC_VALUE
- Defined in:
- ext/quickfix/QuickfixRuby.cpp
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.
6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 |
# File 'ext/quickfix/QuickfixRuby.cpp', line 6643 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; { if(tryRubyException([&]() mutable { result = (VALUE)((swig::GC_VALUE const *)arg1)->inspect(); return self; fail: return Qnil; }) == Qnil) { SWIG_fail; } } vresult = result; return vresult; fail: return Qnil; } |
#to_s(*args) ⇒ Object
call-seq:
to_s -> VALUE
Convert class to a String representation.
6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 |
# File 'ext/quickfix/QuickfixRuby.cpp', line 6681 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; { if(tryRubyException([&]() mutable { result = (VALUE)((swig::GC_VALUE const *)arg1)->to_s(); return self; fail: return Qnil; }) == Qnil) { SWIG_fail; } } vresult = result; return vresult; fail: return Qnil; } |