= private = protected
to_f()
Always returns zero.
nil.to_f #=> 0.0
/* * call-seq: * nil.to_f => 0.0 * * Always returns zero. * * nil.to_f #=> 0.0 */ static VALUE nil_to_f(obj) VALUE obj; { return rb_float_new(0.0); }