* parse.y (rb_str_dynamic_intern): [DOC] move rdoc from rb_str_intern.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45469 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
835186a322
commit
e4879afe3e
20
parse.y
20
parse.y
@ -10676,6 +10676,26 @@ rb_gc_free_dsymbol(VALUE ptr)
|
||||
RSYMBOL(ptr)->fstr = (VALUE)NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* str.intern -> symbol
|
||||
* str.to_sym -> symbol
|
||||
*
|
||||
* Returns the <code>Symbol</code> corresponding to <i>str</i>, creating the
|
||||
* symbol if it did not previously exist. See <code>Symbol#id2name</code>.
|
||||
*
|
||||
* "Koala".intern #=> :Koala
|
||||
* s = 'cat'.to_sym #=> :cat
|
||||
* s == :cat #=> true
|
||||
* s = '@cat'.to_sym #=> :@cat
|
||||
* s == :@cat #=> true
|
||||
*
|
||||
* This can also be used to create symbols that cannot be represented using the
|
||||
* <code>:xxx</code> notation.
|
||||
*
|
||||
* 'cat and dog'.to_sym #=> :"cat and dog"
|
||||
*/
|
||||
|
||||
VALUE
|
||||
rb_str_dynamic_intern(VALUE str)
|
||||
{
|
||||
|
20
string.c
20
string.c
@ -7418,26 +7418,6 @@ rb_str_crypt(VALUE str, VALUE salt)
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* str.intern -> symbol
|
||||
* str.to_sym -> symbol
|
||||
*
|
||||
* Returns the <code>Symbol</code> corresponding to <i>str</i>, creating the
|
||||
* symbol if it did not previously exist. See <code>Symbol#id2name</code>.
|
||||
*
|
||||
* "Koala".intern #=> :Koala
|
||||
* s = 'cat'.to_sym #=> :cat
|
||||
* s == :cat #=> true
|
||||
* s = '@cat'.to_sym #=> :@cat
|
||||
* s == :@cat #=> true
|
||||
*
|
||||
* This can also be used to create symbols that cannot be represented using the
|
||||
* <code>:xxx</code> notation.
|
||||
*
|
||||
* 'cat and dog'.to_sym #=> :"cat and dog"
|
||||
*/
|
||||
|
||||
VALUE
|
||||
rb_str_intern(VALUE s)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user