зеркало из https://github.com/github/ruby.git
14 строки
159 B
Ruby
14 строки
159 B
Ruby
|
class Symbol
|
||
|
# call-seq:
|
||
|
# to_sym -> self
|
||
|
#
|
||
|
# Returns +self+.
|
||
|
#
|
||
|
# Related: String#to_sym.
|
||
|
def to_sym
|
||
|
self
|
||
|
end
|
||
|
|
||
|
alias intern to_sym
|
||
|
end
|