Ruby | Symbol to_proc function
Symbol#to_proc() : to_proc() is a Symbol class method which returns the enumerated process for the symbol object.
Syntax: Symbol.to_proc()
Parameter: Symbol values
Return: The enumerated process for the symbol object.
Example #1 :
# Ruby code for Symbol.to_proc() method # declaring Symbol a = :aBcDeF # declaring Symbol b = : "\u{e4 f6 fc}" # declaring Symbol c = : ABCDEF # Symbol puts "Symbol a : #{a}\n\n" puts "Symbol b : #{b}\n\n" puts "Symbol c : #{c}\n\n\n\n" # to_proc form puts "Symbol a to_proc form : #{a.to_proc}\n\n" puts "Symbol b to_proc form : #{b.to_proc}\n\n" puts "Symbol c to_proc form : #{c.to_proc}\n\n" |
chevron_right
filter_none
Output :
Symbol a : aBcDeF Symbol b : äöü Symbol c : ABCDEF Symbol a to_proc form : # Symbol b to_proc form : # Symbol c to_proc form : #
Example #2 :
# Ruby code for Symbol.to_proc() method # declaring Symbol a = :geeks # declaring Symbol b = : "\u{e5 f6 f3}" # declaring Symbol c = : GEEKS # Symbol puts "Symbol a : #{a}\n\n" puts "Symbol b : #{b}\n\n" puts "Symbol c : #{c}\n\n\n\n" # to_proc form puts "Symbol a to_proc form : #{a.to_proc}\n\n" puts "Symbol b to_proc form : #{b.to_proc}\n\n" puts "Symbol c to_proc form : #{c.to_proc}\n\n" |
chevron_right
filter_none
Output :
Symbol a : geeks Symbol b : åöó Symbol c : GEEKS Symbol a to_proc form : # Symbol b to_proc form : # Symbol c to_proc form : #
Recommended Posts:
- Ruby | Symbol =~ function
- Ruby | Symbol === function
- Ruby | Symbol next function
- Ruby | Symbol == function
- Ruby | Symbol to_sym function
- Ruby | Symbol swapcase function
- Ruby | Symbol succ function
- Ruby | Symbol inspect function
- Ruby | Symbol upcase function
- Ruby | Symbol length function
- Ruby | Symbol encoding function
- Ruby | Symbol to_s function
- Ruby | Symbol id2name function
- Ruby | Symbol match function
- Ruby | Symbol capitalize function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.