-float → float
Returns float, negated.
/* * call-seq: * -float => float * * Returns float, negated. */ static VALUE flo_uminus(flt) VALUE flt; { return rb_float_new(-RFLOAT(flt)->value); }
<code/>
<pre/>
<code/>and<pre/>for code samples.