I want to do the equivalent of

::Infinity= 1.0/0

in a ruby extension which is written in C.

So far I have come up with

rb_const_set(rb_mKernel, rb_intern("Infinity"), rb_float_new(1.0/0));

which gives me a compiler warning due to division by zero. And

rb_const_set(rb_mKernel, rb_intern("Infinity"), rb_eval_string("1.0/0"));

which is ugly due to the usage of eval.

What is a clean proper solution to this?

link|improve this question

Is there something you need that Float::INFINITY doesn't provide? – Jörg W Mittag Oct 28 '11 at 22:31
hm, Float::INFINITY seems to work only in ruby1.9 – johannes Oct 28 '11 at 22:36
1  
Float::INFINITY was added in Ruby 1.9.2, which has been out for over 14 months now. – Jörg W Mittag Oct 28 '11 at 22:44
1.8 is still wide spread – johannes Oct 28 '11 at 22:50
feedback

1 Answer

up vote 1 down vote accepted

I found the answer in this question.

rb_const_set(rb_mKernel, rb_intern("Infinity"), rb_float_new(INFINITY));

There are no compiler warnings for this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.