mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Improve documentation for String#{dump,undump}
This commit is contained in:
parent
bb4ac7a650
commit
35ff4ed47f
1 changed files with 6 additions and 4 deletions
10
string.c
10
string.c
|
@ -6007,14 +6007,16 @@ rb_str_inspect(VALUE str)
|
|||
* call-seq:
|
||||
* str.dump -> new_str
|
||||
*
|
||||
* Produces a quoted version of +str+ with all non-printing characters replaced
|
||||
* by <code>\xHH</code> notation and all special characters escaped.
|
||||
* Returns a quoted version of the string with all non-printing characters
|
||||
* replaced by <code>\xHH</code> notation and all special characters escaped.
|
||||
*
|
||||
* This method can be used for round-trip: if the resulting +new_str+ is
|
||||
* eval'ed, it will produce the original string.
|
||||
*
|
||||
* "hello \n ''".dump #=> "\"hello \\n ''\""
|
||||
* "\f\x00\xff\\\"".dump #=> "\"\\f\\x00\\xFF\\\\\\\"\""
|
||||
*
|
||||
* See also String#undump.
|
||||
*/
|
||||
|
||||
VALUE
|
||||
|
@ -6303,8 +6305,8 @@ static VALUE rb_str_is_ascii_only_p(VALUE str);
|
|||
* call-seq:
|
||||
* str.undump -> new_str
|
||||
*
|
||||
* Produces unescaped version of +str+.
|
||||
* See also String#dump because String#undump does inverse of String#dump.
|
||||
* Returns an unescaped version of the string.
|
||||
* This does the inverse of String#dump.
|
||||
*
|
||||
* "\"hello \\n ''\"".undump #=> "hello \n ''"
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue