--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Returns the Symbol corresponding to str, creating the symbol if it did not previously exist. See Symbol#id2name. - !ruby/struct:SM::Flow::VERB body: " "Koala".intern #=> :Koala\n s = 'cat'.to_sym #=> :cat\n s == :cat #=> true\n s = '@cat'.to_sym #=> :@cat\n s == :@cat #=> true\n" - !ruby/struct:SM::Flow::P body: This can also be used to create symbols that cannot be represented using the :xxx notation. - !ruby/struct:SM::Flow::VERB body: " 'cat and dog'.to_sym #=> :"cat and dog"\n" full_name: String#to_sym is_singleton: false name: to_sym params: | str.intern => symbol str.to_sym => symbol visibility: public