Flowdock
method

save_limit

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: BigDecimal
save_limit() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
static VALUE
BigDecimal_save_limit(VALUE self)
{
    size_t const limit = VpGetPrecLimit();
    int state;
    VALUE ret = rb_protect(rb_yield, Qnil, &state);
    VpSetPrecLimit(limit);
    if (state) rb_jump_tag(state);
    return ret;
}
Register or log in to add new notes.