= private = protected
truncate()
Returns num truncated to an Integer.
Numeric implements this by converting its value to a Float and invoking Float#truncate.
static VALUE num_truncate(VALUE num) { return flo_truncate(rb_Float(num)); }