Flowdock
method

freeze

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: String
freeze() public

No documentation

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

Hide source
VALUE
rb_str_freeze(VALUE str)
{
    if (OBJ_FROZEN(str)) return str;
    rb_str_resize(str, RSTRING_LEN(str));
    return rb_obj_freeze(str);
}
Register or log in to add new notes.